mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
cmdline: revert <down> and <up> mappings for wildoptions=pum
These confict with navigation mappings. Better leave them to the user to reverse them for now for users that want it.
This commit is contained in:
parent
9ef8d0d6b0
commit
16d607929d
@ -609,13 +609,6 @@ static int command_line_execute(VimState *state, int key)
|
||||
} else if (s->c == K_RIGHT) {
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user