fzy
terminal fuzzy finder picker
git clone https://9o.is/git/fzy.git
commit 9cb3b3cabd3b7919027cab482716e26a63c2c7fb parent d19a993344a251feb9c35f4f002071f4a79c5b02 Author: John Hawthorn <john@freerunningtechnologies.com> Date: Mon, 18 Aug 2014 13:34:39 -0700 Up/Down might also be ^[OA or ^[OB Diffstat:
| M | fzy.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fzy.c b/fzy.c @@ -203,7 +203,7 @@ void run(tty_t *tty){ emit(tty); }else if(ch == 27){ /* ESC */ ch = tty_getchar(tty); - if(ch == '['){ + if(ch == '[' || ch == 'O'){ ch = tty_getchar(tty); if(ch == 'A'){ /* UP ARROW */ action_prev();