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/ex_getln.c | |
parent | 4d526ad35aae3e637aa3fd9f5042196120e456a2 (diff) | |
download | vim-f86f26c06a397b634a7c919a363c028c04f794f4.zip |
updated for version 7.2.353
Problem: No command line completion for ":profile".
Solution: Complete the subcommand and file name.
Diffstat (limited to 'src/ex_getln.c')
-rw-r--r-- | src/ex_getln.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c index d5761f338..e8056f84a 100644 --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -4522,6 +4522,9 @@ ExpandFromContext(xp, pat, num_file, file, options) #ifdef FEAT_SIGNS {EXPAND_SIGN, get_sign_name, TRUE}, #endif +#ifdef FEAT_PROFILE + {EXPAND_PROFILE, get_profile_name, TRUE}, +#endif #if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \ && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)) {EXPAND_LANGUAGE, get_lang_arg, TRUE}, |