From 5f385d88e0a786f20c4231b82f250945a6583a17 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Wed, 23 Feb 2022 15:36:49 +0900 Subject: [PATCH] [zsh] Set up bindings for all three keymaps: emacs, vicmd, and viins Fix #2694 --- shell/key-bindings.zsh | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/shell/key-bindings.zsh b/shell/key-bindings.zsh index 72d66f5..032cd43 100644 --- a/shell/key-bindings.zsh +++ b/shell/key-bindings.zsh @@ -65,8 +65,10 @@ fzf-file-widget() { zle reset-prompt return $ret } -zle -N fzf-file-widget -bindkey '^T' fzf-file-widget +zle -N fzf-file-widget +bindkey -M emacs '^T' fzf-file-widget +bindkey -M vicmd '^T' fzf-file-widget +bindkey -M viins '^T' fzf-file-widget # ALT-C - cd into the selected directory fzf-cd-widget() { @@ -86,8 +88,10 @@ fzf-cd-widget() { zle reset-prompt return $ret } -zle -N fzf-cd-widget -bindkey '\ec' fzf-cd-widget +zle -N fzf-cd-widget +bindkey -M emacs '\ec' fzf-cd-widget +bindkey -M vicmd '\ec' fzf-cd-widget +bindkey -M viins '\ec' fzf-cd-widget # CTRL-R - Paste the selected command from history into the command line fzf-history-widget() { @@ -105,8 +109,10 @@ fzf-history-widget() { zle reset-prompt return $ret } -zle -N fzf-history-widget -bindkey '^R' fzf-history-widget +zle -N fzf-history-widget +bindkey -M emacs '^R' fzf-history-widget +bindkey -M vicmd '^R' fzf-history-widget +bindkey -M viins '^R' fzf-history-widget } always { eval $__fzf_key_bindings_options