diff options
author | Alan Pearce | 2016-07-22 14:40:22 +0200 |
---|---|---|
committer | Alan Pearce | 2016-07-22 14:40:22 +0200 |
commit | 84e5cb9fcc9faa1c846e12ec7234e24c18f1fab7 (patch) | |
tree | 85d71163db1872ee8bb86a0f37317f4a9da0f710 /tag-zsh/config/zsh/zshrc | |
parent | 0f756df9afe3476cd4bef8fac54a5cbdb93080e8 (diff) | |
download | nixfiles-84e5cb9fcc9faa1c846e12ec7234e24c18f1fab7.tar.lz nixfiles-84e5cb9fcc9faa1c846e12ec7234e24c18f1fab7.tar.zst nixfiles-84e5cb9fcc9faa1c846e12ec7234e24c18f1fab7.zip |
zsh: Bind directory-history search keys
Diffstat (limited to 'tag-zsh/config/zsh/zshrc')
-rw-r--r-- | tag-zsh/config/zsh/zshrc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tag-zsh/config/zsh/zshrc b/tag-zsh/config/zsh/zshrc index ddcdfbd7..63384f55 100644 --- a/tag-zsh/config/zsh/zshrc +++ b/tag-zsh/config/zsh/zshrc @@ -183,8 +183,8 @@ fi if zplug check alanpearce/zsh-directory-history then unsetopt flow_control # Let me use ^S and ^Q - # bindkey '\e[A' directory-history-search-backward - # bindkey '\e[B' directory-history-search-forward + bindkey '\e[B' directory-history-search-backward + bindkey '\e[A' directory-history-search-forward bindkey -M emacs '^R' history-substring-search-up bindkey -M emacs '^S' history-substring-search-down |