mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Merge pull request #9746 from bfredl/wildkeys
cmdline: revert <down> and <up> mappings for wildoptions=pum
This commit is contained in:
commit
027a2157d3
@ -609,13 +609,6 @@ static int command_line_execute(VimState *state, int key)
|
|||||||
} else if (s->c == K_RIGHT) {
|
} else if (s->c == K_RIGHT) {
|
||||||
s->c = Ctrl_N;
|
s->c = Ctrl_N;
|
||||||
}
|
}
|
||||||
if (compl_match_array) {
|
|
||||||
if (s->c == K_UP) {
|
|
||||||
s->c = Ctrl_P;
|
|
||||||
} else if (s->c == K_DOWN) {
|
|
||||||
s->c = Ctrl_N;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Hitting CR after "emenu Name.": complete submenu
|
// Hitting CR after "emenu Name.": complete submenu
|
||||||
|
Loading…
Reference in New Issue
Block a user