diff options
author | Gregory Anders <greg@gpanders.com> | 2021-08-16 09:31:14 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-16 08:31:14 -0700 |
commit | 0aa8128aaa9e6f714372f7ea7299f4115de0a962 (patch) | |
tree | 4699f46b0c156f06b8d1b8f2bf9d748cc6c40735 /src/nvim/ex_getln.c | |
parent | 7146103be2bc576c273fd9df2f922b6b5ba4c972 (diff) | |
download | rneovim-0aa8128aaa9e6f714372f7ea7299f4115de0a962.tar.gz rneovim-0aa8128aaa9e6f714372f7ea7299f4115de0a962.tar.bz2 rneovim-0aa8128aaa9e6f714372f7ea7299f4115de0a962.zip |
feat(defaults): map CTRL-L to search highlights, update diffs #15385
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r-- | src/nvim/ex_getln.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c index af8a23f5cc..7cab3eb650 100644 --- a/src/nvim/ex_getln.c +++ b/src/nvim/ex_getln.c @@ -6259,8 +6259,8 @@ static int open_cmdwin(void) const int histtype = hist_char2type(cmdwin_type); if (histtype == HIST_CMD || histtype == HIST_DEBUG) { if (p_wc == TAB) { - add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT); - add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL); + add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT, false); + add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL, false); } set_option_value("ft", 0L, "vim", OPT_LOCAL); } |