fzy

terminal fuzzy finder picker

git clone https://9o.is/git/fzy.git

commit 7565ac50c27d61f729b39b612d488ccb355b8a10
parent 17c558828ce7f7b359da35b831db681099ed7ee5
Author: John Hawthorn <john@hawthorn.email>
Date:   Fri, 11 Jul 2025 21:06:17 -0700

Increase tty buffer to 16k

This should avoid tearing when displaying many very long results

Diffstat:
Msrc/tty.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/tty.c b/src/tty.c @@ -39,7 +39,7 @@ void tty_init(tty_t *tty, const char *tty_filename) { exit(EXIT_FAILURE); } - if (setvbuf(tty->fout, NULL, _IOFBF, 4096)) { + if (setvbuf(tty->fout, NULL, _IOFBF, 16384)) { perror("setvbuf"); exit(EXIT_FAILURE); }