From d4bc861bdc79ad7f07cf87109d0fd380e241d8e3 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 9 Nov 2017 11:55:33 -0800 Subject: make ^R also work in command mode this should probably be submitted as a bug report --- zshcomplete | 2 ++ zshinput | 6 ++++-- zshrc | 4 ---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/zshcomplete b/zshcomplete index 4140f58..a1ebb7a 100644 --- a/zshcomplete +++ b/zshcomplete @@ -17,3 +17,5 @@ compinit autoload -Uz bashcompinit bashcompinit # End of lines added by compinstall + +source ~/.sh/fzf/shell/completion.zsh diff --git a/zshinput b/zshinput index 51cae68..94f5558 100644 --- a/zshinput +++ b/zshinput @@ -1,5 +1,7 @@ bindkey -v +source ~/.sh/fzf/shell/key-bindings.zsh + autoload history-search-end zle -N history-beginning-search-backward-end history-search-end zle -N history-beginning-search-forward-end history-search-end @@ -8,8 +10,8 @@ bindkey "^[[B" history-beginning-search-forward-end bindkey "^[OA" history-beginning-search-backward-end bindkey "^[OB" history-beginning-search-forward-end -bindkey -M viins '^R' history-incremental-search-backward -bindkey -M vicmd '^R' history-incremental-search-backward +bindkey -M viins '^R' fzf-history-widget +bindkey -M vicmd '^R' fzf-history-widget bindkey -M vicmd '/' history-incremental-search-backward bindkey -M vicmd '?' history-incremental-search-forward bindkey -rM viins '^[/' diff --git a/zshrc b/zshrc index 1655fb0..1e9d84e 100644 --- a/zshrc +++ b/zshrc @@ -87,10 +87,6 @@ ZSH_HIGHLIGHT_STYLES[assign]='fg=cyan' source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=black,bold' # }}} -# fzf {{{ -source ~/.sh/fzf/shell/completion.zsh -source ~/.sh/fzf/shell/key-bindings.zsh -# }}} # }}} # prompt {{{ function shell_prompt_precmd () { -- cgit v1.2.3-54-g00ecf