diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-16 10:24:49 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-16 10:42:13 -0400 |
commit | 6531b175addc33c710b6e4e3501077e1d7213a8c (patch) | |
tree | 303675036347de439a28ca016156309e5ec51f15 /src/nvim/ex_getln.c | |
parent | b5cfac089409faf17a290d4bfe1b669212e2984e (diff) | |
download | rneovim-6531b175addc33c710b6e4e3501077e1d7213a8c.tar.gz rneovim-6531b175addc33c710b6e4e3501077e1d7213a8c.tar.bz2 rneovim-6531b175addc33c710b6e4e3501077e1d7213a8c.zip |
vim-patch:8.0.0878: no completion for :mapclear
Problem: No completion for :mapclear.
Solution: Add completion (Nobuhiro Takasaki et al. closes vim/vim#1943)
https://github.com/vim/vim/commit/cae92dc3d5bdd4009910671328cd01394bfbe2cf
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r-- | src/nvim/ex_getln.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c index 1810056a4a..e8a85e7cf6 100644 --- a/src/nvim/ex_getln.c +++ b/src/nvim/ex_getln.c @@ -4756,6 +4756,7 @@ ExpandFromContext ( } tab[] = { { EXPAND_COMMANDS, get_command_name, false, true }, { EXPAND_BEHAVE, get_behave_arg, true, true }, + { EXPAND_MAPCLEAR, get_mapclear_arg, true, true }, { EXPAND_MESSAGES, get_messages_arg, true, true }, { EXPAND_HISTORY, get_history_arg, true, true }, { EXPAND_USER_COMMANDS, get_user_commands, false, true }, |