]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
zsh/rc: Map incremental search to Ctrl-R.
authorSimon Ruderich <simon@ruderich.org>
Tue, 11 Feb 2014 01:34:52 +0000 (02:34 +0100)
committerSimon Ruderich <simon@ruderich.org>
Tue, 11 Feb 2014 01:34:52 +0000 (02:34 +0100)
It's not mapped per default in Vi-mode.

zsh/rc

diff --git a/zsh/rc b/zsh/rc
index 9e8edd262f67197c44ab3441b53a655f5987f044..f8adacf317b64b7cde56d1c258c74e47a93dcf2c 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -153,6 +153,7 @@ setopt incappendhistory
 setopt histignoredups
 # Don't add lines starting with a space to the history.
 setopt histignorespace
+
 # Vim like completions of previous executed commands (also enter Vi-mode). If
 # called at the beginning it just recalls old commands (like cursor up), if
 # called after typing something, only lines starting with the typed text are
@@ -181,6 +182,14 @@ bindkey -a '^P' history-beginning-search-backward # binding for Vi-mode
 # after calling ^P.
 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
+# Also enable my usual use of Ctrl-P/Ctrl-N to get the previous/next matching
+# history entry.
+bindkey -M isearch '^P' history-incremental-search-backward
+bindkey -M isearch '^N' history-incremental-search-forward
+
 # Automatically push cd-ed directories on the directory stack.
 setopt autopushd
 # Don't push duplicates on the directory stack.