diff --git a/Configuring-fuzzy-completion.md b/Configuring-fuzzy-completion.md index 339adf1..f6ea78c 100644 --- a/Configuring-fuzzy-completion.md +++ b/Configuring-fuzzy-completion.md @@ -8,12 +8,10 @@ See https://github.com/junegunn/fzf/wiki/Configuring-shell-key-bindings#changing Instead of using `TAB` key with a trigger sequence (`**`), you can assign a dedicated key for fuzzy completion while retaining the default behavior of `TAB` key. -This keeps the default `**` but also adds the ability to use `^T`. - Add the following lines *after* `source ~/.fzf.zsh` ```sh -export FZF_COMPLETION_TRIGGER='**' +export FZF_COMPLETION_TRIGGER='' bindkey '^T' fzf-completion bindkey '^I' $fzf_default_completion ```