How to get ctrl+N same behaviour as down arrow. #734
ChillarAnand
started this conversation in
General
Replies: 1 comment
-
Check what bindkey -M main -L | grep '"^N"'
bindkey -M menuselect -L | grep '"^N"' It's probably bound to These bindings should make ctrl+n and ctrl+p enter the completion menu and cycle to the next and previous item: bindkey '^n' menu-select
bindkey "^p" menu-select
bindkey -M menuselect '^n' menu-complete
bindkey -M menuselect '^p' reverse-menu-complete |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
With down arrow I am able to cycle through all the options.
With ctrl+n, on first press, it goes to first selection. When I press again, auto complete stops instead of going to second option.
Beta Was this translation helpful? Give feedback.
All reactions