diff src/ex_docmd.c @ 2068:98a2a6e6b966 v7.2.353

updated for version 7.2.353 Problem: No command line completion for ":profile". Solution: Complete the subcommand and file name.
author Bram Moolenaar <bram@zimbu.org>
date Wed, 03 Feb 2010 15:14:22 +0100
parents 1e52efdc900c
children 8f72e3512b43
line wrap: on
line diff
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -3804,6 +3804,11 @@ set_one_cmd_context(xp, buff)
 		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 */