summaryrefslogtreecommitdiff
path: root/plugins/vi-mode/vi-mode.plugin.zsh
diff options
context:
space:
mode:
authorDouglas Drumond <douglas@cafelinear.com>2016-09-12 12:34:52 -0300
committerMarc Cornellà <marc.cornella@live.com>2016-09-12 17:34:52 +0200
commit3ad92a57f194f2a00a0a4c3e3241ce494e791c02 (patch)
tree90a22aa3d688c927118074af6587e798e2209008 /plugins/vi-mode/vi-mode.plugin.zsh
parentac9a8cb687958d1caf05e69bc7aa5f4297383c09 (diff)
downloadzsh-3ad92a57f194f2a00a0a4c3e3241ce494e791c02.tar.gz
zsh-3ad92a57f194f2a00a0a4c3e3241ce494e791c02.tar.bz2
zsh-3ad92a57f194f2a00a0a4c3e3241ce494e791c02.zip
Add ctrl-r, ctrl-a and ctrl-e support in vi-mode (#4994)
* Add ctrl-r support in vi-mode to perform backward search in history * Add ctrl-a support to move to bol in vi-mode * Add ctrl-e support to move to eol in vi-mode Signed-off-by: Douglas Drumond <douglas@cafelinear.com>
Diffstat (limited to 'plugins/vi-mode/vi-mode.plugin.zsh')
-rw-r--r--plugins/vi-mode/vi-mode.plugin.zsh7
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/vi-mode/vi-mode.plugin.zsh b/plugins/vi-mode/vi-mode.plugin.zsh
index 0e2af5dce..dee694b9a 100644
--- a/plugins/vi-mode/vi-mode.plugin.zsh
+++ b/plugins/vi-mode/vi-mode.plugin.zsh
@@ -28,6 +28,13 @@ bindkey '^?' backward-delete-char
bindkey '^h' backward-delete-char
bindkey '^w' backward-kill-word
+# allow ctrl-r to perform backward search in history
+bindkey '^r' history-incremental-search-backward
+
+# allow ctrl-a and ctrl-e to move to beginning/end of line
+bindkey '^a' beginning-of-line
+bindkey '^e' end-of-line
+
# if mode indicator wasn't setup by theme, define default
if [[ "$MODE_INDICATOR" == "" ]]; then
MODE_INDICATOR="%{$fg_bold[red]%}<%{$fg[red]%}<<%{$reset_color%}"