diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-03-02 15:56:05 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-03-02 15:56:05 +0100 |
commit | 42b4ddab9585411e53c16cddc93e727a5db7f567 (patch) | |
tree | 64099120357721d5f416394a192d095269a47727 /src/ex_getln.c | |
parent | 58cb0898a379bee5989019a6a3362032b5708408 (diff) | |
download | vim-42b4ddab9585411e53c16cddc93e727a5db7f567.zip |
updated for version 7.2.381
Problem: No completion for :behave.
Solution: Add :behave completion. Minor related fixes. (Dominique Pelle)
Diffstat (limited to 'src/ex_getln.c')
-rw-r--r-- | src/ex_getln.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c index e8056f84a..6b5a824bd 100644 --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -4492,6 +4492,7 @@ ExpandFromContext(xp, pat, num_file, file, options) } tab[] = { {EXPAND_COMMANDS, get_command_name, FALSE}, + {EXPAND_BEHAVE, get_behave_arg, TRUE}, #ifdef FEAT_USR_CMDS {EXPAND_USER_COMMANDS, get_user_commands, FALSE}, {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE}, |