How does fzf completion work now? #202
-
Environment
Does the bug occur without config files?
Steps to reproduce
Expected behaviorAccording to the documentation I would expect that step 6 works as in step 3. Actual behaviorNothing happens, shell blocks, completions times out (as it reports). |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments
-
It's not possible to change |
Beta Was this translation helpful? Give feedback.
-
Okay so new attempt: $ cd $(mktemp --directory)
$ vim .zshrc
$ # see below snippet for zshrc content
$ ZDOTDIR=$PWD HOME=$PWD zsh -d
> cd /etc/** # Press <TAB> here
> # nothings happens, shell blocks, completion timeout
source /usr/share/fzf/completion.zsh
zstyle ':autocomplete:tab:*' fzf-completion yes
source /home/vagrant/.cache/zinit/plugins/marlonrichert---zsh-autocomplete/zsh-autocomplete.plugin.zsh Note that if I only source fzf here. It works again as intended. |
Beta Was this translation helpful? Give feedback.
-
I tried again with your new steps above, but it works fine for me. 🤷🏽♂️ |
Beta Was this translation helpful? Give feedback.
-
@weilbith I pushed in some changes I had locally. Perhaps they made a difference. Can you |
Beta Was this translation helpful? Give feedback.
-
Okay that is awkward. I thought this setup should eliminate most factors of a not equal setup. I'm mobil now, but I try to reproduce this issue in a Docker container. If the problem remains I'll construct a |
Beta Was this translation helpful? Give feedback.
-
Sorry, just saw your comment after posting mine (did not updated the page). I'll check this out when I'm on a PC again. 👍 |
Beta Was this translation helpful? Give feedback.
-
Yes it works now after the update! Thank you so much. 🎉 |
Beta Was this translation helpful? Give feedback.
It's not possible to change
zstyle ':autocomplete:tab:*' fzf-completion
at runtime. I've emphasized that now in the Readme.