diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-02-03 15:14:22 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-02-03 15:14:22 +0100 |
commit | f86f26c06a397b634a7c919a363c028c04f794f4 (patch) | |
tree | 4f5c4891c2e65ab55ae3fd73859d0ab38902cf05 /src/proto/ex_cmds2.pro | |
parent | 4d526ad35aae3e637aa3fd9f5042196120e456a2 (diff) | |
download | vim-git-f86f26c06a397b634a7c919a363c028c04f794f4.tar.gz |
updated for version 7.2.353v7.2.353
Problem: No command line completion for ":profile".
Solution: Complete the subcommand and file name.
Diffstat (limited to 'src/proto/ex_cmds2.pro')
-rw-r--r-- | src/proto/ex_cmds2.pro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/proto/ex_cmds2.pro b/src/proto/ex_cmds2.pro index 88cfeb7a3..2c89fe3fe 100644 --- a/src/proto/ex_cmds2.pro +++ b/src/proto/ex_cmds2.pro @@ -24,6 +24,8 @@ void profile_sub_wait __ARGS((proftime_T *tm, proftime_T *tma)); int profile_equal __ARGS((proftime_T *tm1, proftime_T *tm2)); int profile_cmp __ARGS((proftime_T *tm1, proftime_T *tm2)); void ex_profile __ARGS((exarg_T *eap)); +char_u *get_profile_name __ARGS((expand_T *xp, int idx)); +void set_context_in_profile_cmd __ARGS((expand_T *xp, char_u *arg)); void profile_dump __ARGS((void)); void script_prof_save __ARGS((proftime_T *tm)); void script_prof_restore __ARGS((proftime_T *tm)); |