Browse code

Up/Down might also be ^[OA or ^[OB

John Hawthorn authored on 18/08/2014 20:34:39
Showing 1 changed files

  • fzy.c index a5efe4c..510ac31 100644
... ...
@@ -203,7 +203,7 @@ void run(tty_t *tty){
203 203
 			emit(tty);
204 204
 		}else if(ch == 27){ /* ESC */
205 205
 			ch = tty_getchar(tty);
206
-			if(ch == '['){
206
+			if(ch == '[' || ch == 'O'){
207 207
 				ch = tty_getchar(tty);
208 208
 				if(ch == 'A'){ /* UP ARROW */
209 209
 					action_prev();