d-enk
d-enk
[autocomplete-common-prefix](https://github.com/lincheney/fzf-tab-completion?tab=readme-ov-file#autocomplete-common-prefix) Isn't that what you want?
> it seems like fzf is still invoked but aborted resulting in a "flashing" behaviour. fzf is not called https://github.com/lincheney/fzf-tab-completion/blob/4850357beac6f8e37b66bd78ccf90008ea3de40b/bash/fzf-bash-completion.sh#L312-L313 In this place you can add the behavior you need...
```bash FZF_DEFAULT_OPTS="$FZF_DEFAULT_OPTS --color=prompt:#FF0000" ``` only for fzf-tab-completion `FZF_COMPLETION_OPTS` instead `FZF_DEFAULT_OPTS` [here](https://github.com/junegunn/fzf/blob/master/ADVANCED.md#color-themes) more about colors
`--color='fg:#FF0000,fg+:#00FF00'`
https://github.com/lincheney/fzf-tab-completion/blob/11122590127ab62c51dd4bbfd0d432cee30f9984/bash/fzf-bash-completion.sh#L382 need replace/remove `"\x1b[37m"` `"\x1b[0m"`
same, remove "\x1b[37m" "\x1b[0m" or replace to other ansi color https://github.com/lincheney/fzf-tab-completion/blob/11122590127ab62c51dd4bbfd0d432cee30f9984/zsh/fzf-zsh-completion.sh#L343-L349