fzy
terminal fuzzy finder picker
git clone https://9o.is/git/fzy.git
commit 3ffcf377353a33cac1e2a5f6e48508e89e55c35f parent 28b02f9f451b63d4410cc32b7160e632e5ae2745 Author: John Hawthorn <john.hawthorn@gmail.com> Date: Wed, 17 Sep 2014 20:42:18 -0700 Re-run search on TAB Diffstat:
| M | fzy.c | | | 1 | + |
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/fzy.c b/fzy.c @@ -152,6 +152,7 @@ void run(tty_t *tty, choices_t *choices){ }else if(ch == 9){ /* TAB */ strncpy(search, choices_get(choices, choices->selection), SEARCH_SIZE_MAX); search_size = strlen(search); + choices_search(choices, search); }else if(ch == 10){ /* Enter */ clear(tty);