Browse code

Support movement with CTRL-J/CTRL-K

Michael Stock authored on 18/01/2017 05:41:15
Showing 1 changed files

... ...
@@ -227,6 +227,8 @@ static const keybinding_t keybindings[] = {{"\x7f", action_del_char},	/* DEL */
227 227
 					   {KEY_CTRL('M'), action_emit},	 /* CR */
228 228
 					   {KEY_CTRL('P'), action_prev},	 /* C-P */
229 229
 					   {KEY_CTRL('N'), action_next},	 /* C-N */
230
+					   {KEY_CTRL('K'), action_prev},	 /* C-J */
231
+					   {KEY_CTRL('J'), action_next},	 /* C-K */
230 232
 
231 233
 					   {"\x1b[A", action_prev}, /* UP */
232 234
 					   {"\x1bOA", action_prev}, /* UP */