From eaf4b30009a6bad454d5da0a58a8085a9c26b041 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Tue, 14 Oct 2014 05:12:13 +0200 Subject: [PATCH] zsh/rc: use history-incremental-pattern-search-* --- zsh/rc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zsh/rc b/zsh/rc index c7a964e..33f840e 100644 --- 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. -- 2.44.1