Junegunn Choi
Junegunn Choi
Here's my take. ```sh read -d '' FZF_ALT_C_OPTS
How do you set up shell integration? Are you following the instruction in https://github.com/junegunn/fzf?tab=readme-ov-file#setting-up-shell-integration?
I can't reproduce the problem. Please make sure you have the latest version of fzf and that you have set it up using the right method. https://github.com/junegunn/fzf?tab=readme-ov-file#setting-up-shell-integration
I can't reproduce the problem. Does this work as expected and show files under `..`? ```sh tmux display-popup -E -d $(pwd) fzf --walker-root ../ ``` What's your tmux version?
For the moment, you can use `reverse` attribute to achieve a similar effect. ```sh fzf --color fg:black,bg:white,hl:yellow:reverse,hl+:bright-cyan:reverse ```
Thanks @gchan for the clarification.
Fixed in #4298
I see, but I'm not going to rush into a decision as the option has become pretty complicated. For now, consider calculating the absolute width (or height) beforehand in your...
Have you tried using fuzzy completion? i.e. `firefox pictures/**` > My FZF configuration: > ```bash > source "$XDG_CONFIG_HOME/fzf/key-bindings.bash" > source "$XDG_CONFIG_HOME/bash/fzf-bash-completion.sh" > bind -x '"\t": fzf_bash_completion' > ``` This is...
Does `complete | grep firefox` show anything?