]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
zsh/rc: use history-incremental-pattern-search-*
authorSimon Ruderich <simon@ruderich.org>
Tue, 14 Oct 2014 03:12:13 +0000 (05:12 +0200)
committerSimon Ruderich <simon@ruderich.org>
Tue, 14 Oct 2014 03:12:13 +0000 (05:12 +0200)
zsh/rc

diff --git a/zsh/rc b/zsh/rc
index c7a964e131ad074fc8c45788b71f3e63a768d08f..33f840e7f6d2153b2afb7e52735fe3a7064f1d2a 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -184,12 +184,12 @@ bindkey -a '^N' history-beginning-search-forward
 
 # Enable incremental search which is especially useful when the string is an
 # argument and not the command.
-bindkey '^R' history-incremental-search-backward
+bindkey '^R' history-incremental-pattern-search-backward
 # Also enable my usual use of Ctrl-P/Ctrl-N to get the previous/next matching
 # history entry.
 if [[ $ZSH_VERSION == (4.<4->*|<5->*) ]]; then
-    bindkey -M isearch '^P' history-incremental-search-backward
-    bindkey -M isearch '^N' history-incremental-search-forward
+    bindkey -M isearch '^P' history-incremental-pattern-search-backward
+    bindkey -M isearch '^N' history-incremental-pattern-search-forward
 fi
 
 # Automatically push cd-ed directories on the directory stack.