Junegunn Choi
Junegunn Choi
Thanks @georgejean for linking the issue. So we can either fix #3799 in LightRenderer and drop the tcell renderer, or extend the tcell renderer to support image rendering. Since I'm...
Thanks. [0ba0661](https://github.com/junegunn/fzf/commit/0ba066123e0e1bddbc7def6845135579e0ee2989) will fix the scrollability problem. Please test it and let me know. ```sh fzf --preview-window wrap --preview 'seq $((FZF_PREVIEW_LINES - 2)); yes | head -$((FZF_PREVIEW_COLUMNS + 1)) |...
I wonder if this is still an issue with the latest version of fzf. Possibly related: https://github.com/junegunn/fzf/commit/16f647393838ea3eb0778a45178323aea21b67a0
So I'm probably not going to do this. As you mentioned, this is a very niche use case, and fzf is a short-lived process in most common scenarios. > The...
Have you tested `--accept-nth`?
Can you test again? `--accept-nth` doesn't produce quotes. ```sh $ echo foo bar | fzf --accept-nth 2 bar ```
We need to clarify a few things. --- A placeholder expression is designed to be evaluated to a quoted string, so that it can be safely passed as an argument...
> One consideration would be what would it look like to do overrides? We currently have 3 basic color schemes. `light`, `dark` (the default), and `16`. We start from there...
You might want to check out the mode switching example in https://junegunn.github.io/fzf/releases/0.59.0/#hiding-input-section
I can't reproduce the issue. I suggest that you start bash with a minimal configuration file with only one line ```sh [ -f ~/.fzf.bash ] && source ~/.fzf.bash ``` and...