Browse code

Re-run search on TAB

John Hawthorn authored on 18/09/2014 03:42:18
Showing 1 changed files

  • fzy.c index 369d75c..a0b2b95 100644
... ...
@@ -152,6 +152,7 @@ void run(tty_t *tty, choices_t *choices){
152 152
 		}else if(ch == 9){ /* TAB */
153 153
 			strncpy(search, choices_get(choices, choices->selection), SEARCH_SIZE_MAX);
154 154
 			search_size = strlen(search);
155
+			choices_search(choices, search);
155 156
 		}else if(ch == 10){ /* Enter */
156 157
 			clear(tty);
157 158