fzy
terminal fuzzy finder picker
git clone https://9o.is/git/fzy.git
commit 6d32baede18deb5407f730a092bb9f83ab2a963b parent 6959e7cd2225c545058d64ec47a6a876c8e41693 Author: John Hawthorn <john.hawthorn@gmail.com> Date: Sat, 26 Jul 2014 23:36:11 -0700 ^u was not resetting search Diffstat:
| M | fzy.c | | | 1 | + |
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/fzy.c b/fzy.c @@ -199,6 +199,7 @@ void run(){ }else if(ch == 21){ /* C-U */ search_size = 0; search[0] = '\0'; + run_search(search); }else if(ch == 23){ /* C-W */ if(search_size) search[--search_size] = '\0';