You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
zstyle ':completion:*:*:git:*' fzf-search-display true
I have the previous line after I source-fzf-tab-completion. Everything works great, however I would prefer to not run fzf when tab completing filenames/dirs. The previous line doesn't seem to work for me when placed either before or after sourcing fzf-tab-completion.
My plugins zsh.
`plugins=(
git
z
dircycle
ssh-agent
vi-mode
zsh-syntax-highlighting
zsh-vim-mode
zsh-system-clipboard
aws
fzf
docker
zsh-completions
zsh-autosuggestions
)
hi, I think you are mistaken about the behaviour of fzf-search-display.
This not about when to display fzf for searching.
It is about whether fzf will also search ZSH display strings.
zstyle ':completion:*:*:git:*' fzf-search-display true
I have the previous line after I source-fzf-tab-completion. Everything works great, however I would prefer to not run fzf when tab completing filenames/dirs. The previous line doesn't seem to work for me when placed either before or after sourcing fzf-tab-completion.
My plugins zsh.
`plugins=(
git
z
dircycle
ssh-agent
vi-mode
zsh-syntax-highlighting
zsh-vim-mode
zsh-system-clipboard
aws
fzf
docker
zsh-completions
zsh-autosuggestions
)
autoload -U compinit && compinit
source $ZSH/oh-my-zsh.sh
source $HOME/.oh-my-zsh/custom/plugins/fzf-tab-completion/zsh/fzf-zsh-completion.sh
zstyle ':completion:::git:*' fzf-search-display true
`
The text was updated successfully, but these errors were encountered: