zsh: fix history search w/arrow keys
This commit is contained in:
parent
35534e8c1c
commit
602ba38499
1 changed files with 2 additions and 2 deletions
4
.zshrc
4
.zshrc
|
@ -97,8 +97,8 @@ zle -N _jump
|
|||
|
||||
## Keybindings
|
||||
bindkey -e
|
||||
bindkey '^[[A' history-substring-search-up
|
||||
bindkey '^[[B' history-substring-search-down
|
||||
bindkey '^[[A' history-beginning-search-backward
|
||||
bindkey '^[[B' history-beginning-search-forward
|
||||
bindkey '^P' history-beginning-search-backward
|
||||
bindkey '^N' history-beginning-search-forward
|
||||
bindkey '^g' _jump
|
||||
|
|
Loading…
Reference in a new issue