zap-zsh/vim

No such key map "menuselect"

Closed this issue · 1 comments

Picture

Can be fixed by adding zmodload -i zsh/complist above the keys in tab complete menu in the [vim.plugin.zsh] file:

...
zmodload -i zsh/complist
# Use vim keys in tab complete menu:
bindkey -M menuselect '^h' vi-backward-char
bindkey -M menuselect '^k' vi-up-line-or-history
bindkey -M menuselect '^l' vi-forward-char
bindkey -M menuselect '^j' vi-down-line-or-history
...

Fixed in #2