zsh の menu selection 中のキーバインド色々
zmodload zsh/complist # 画面単位でカーソルを動かす bindkey -M menuselect '^v' forward-word bindkey -M menuselect '\ev' backward-word # 一番上/下へ bindkey -M menuselect '\e<' beginning-of-history bindkey -M menuselect '\e>' end-of-history
その他は man zshmodules
の zsh/complist
の項参照。