]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
zsh: Update ^P/^N to enter Vi-mode.
authorSimon Ruderich <simon@ruderich.org>
Sun, 17 Jan 2010 14:27:35 +0000 (15:27 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sun, 17 Jan 2010 14:28:46 +0000 (15:28 +0100)
zsh/rc

diff --git a/zsh/rc b/zsh/rc
index f24addea903d738ab9b7baf821bf26b138f97c8e..390ce7edba8dba58a2da6d3427f3222e4c64eb34 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -89,9 +89,33 @@ setopt appendhistory
 setopt incappendhistory
 # If the same command is run multiple times store it only once in the history.
 setopt histignoredups
-# Vim like completions of previous executed commands.
-bindkey "^P" history-beginning-search-backward
-bindkey "^N" history-beginning-search-forward
+# 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 likes starting with the typed are
+# returned. Very useful to get old commands quickly. Thanks to Mikachu in #zsh
+# on Freenode (2010-01-17 12:47) for the information how to a function with
+# bindkey.
+zle -N my-vi-history-beginning-search-backward
+my-vi-history-beginning-search-backward() {
+    local not_at_beginning_of_line
+    if [[ $CURSOR -ne 0 ]]; then
+        not_at_beginning_of_line=yes
+    fi
+
+    zle history-beginning-search-backward
+
+    # Start Vi-mode and stay at the same position (Vi-mode modes one left,
+    # this counters it).
+    zle vi-cmd-mode
+    if [[ -n $not_at_beginning_of_line ]]; then
+        zle vi-forward-char
+    fi
+}
+bindkey "^P" my-vi-history-beginning-search-backward
+bindkey -a "^P" history-beginning-search-backward # binding for Vi-mode
+# Here only Vi-mode is necessary as ^P enters Vi-mode and ^N only makes sense
+# after calling ^P.
+bindkey -a "^N" history-beginning-search-forward
 
 
 # PROMPT SETTINGS