fzy
terminal fuzzy finder picker
git clone https://9o.is/git/fzy.git
commit 563792b5f00ec12931c561b21c92156f41c465de parent cfe06730cd46bb6cb8100119e3872e1cf5d97529 Author: Jul <jul@9o.is> Date: Mon, 23 Feb 2026 21:07:33 +0800 replace tabs with spacing for better inverse highlighting Diffstat:
| M | src/tty_interface.c | | | 2 | ++ |
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/tty_interface.c b/src/tty_interface.c @@ -71,6 +71,8 @@ static void draw_match(tty_interface_t *state, const char *choice, int selected) } if (choice[i] == '\n') { tty_putc(tty, ' '); + } else if (choice[i] == '\t') { + tty_printf(tty, " "); } else { tty_printf(tty, "%c", choice[i]); }