diff options
author | Douglas Drumond <douglas@cafelinear.com> | 2016-09-12 12:34:52 -0300 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2016-09-12 17:34:52 +0200 |
commit | 3ad92a57f194f2a00a0a4c3e3241ce494e791c02 (patch) | |
tree | 90a22aa3d688c927118074af6587e798e2209008 /plugins/vi-mode/vi-mode.plugin.zsh | |
parent | ac9a8cb687958d1caf05e69bc7aa5f4297383c09 (diff) | |
download | zsh-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.zsh | 7 |
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%}" |