commit | f86f26c06a397b634a7c919a363c028c04f794f4 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Feb 03 15:14:22 2010 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Feb 03 15:14:22 2010 +0100 |
tree | 4f5c4891c2e65ab55ae3fd73859d0ab38902cf05 | |
parent | 4d526ad35aae3e637aa3fd9f5042196120e456a2 [diff] [blame] |
updated for version 7.2.353 Problem: No command line completion for ":profile". Solution: Complete the subcommand and file name.
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 016a2b5..aeb7774 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c
@@ -3804,6 +3804,11 @@ xp->xp_context = EXPAND_NOTHING; break; #endif +#if defined(FEAT_PROFILE) + case CMD_profile: + set_context_in_profile_cmd(xp, arg); + break; +#endif #endif /* FEAT_CMDL_COMPL */