New: Use j and k to move up and down the stack in the bezel. Thanks, vi.

This commit is contained in:
Richard Mondello 2011-11-20 02:03:40 -05:00
parent 1ca77a2661
commit c268fa20ab

View file

@ -337,10 +337,12 @@
break;
case NSUpArrowFunctionKey:
case NSLeftArrowFunctionKey:
case 0x6B: // k
[self stackUp];
break;
case NSDownArrowFunctionKey:
case NSRightArrowFunctionKey:
case 0x6A: // j
[self stackDown];
break;
case NSHomeFunctionKey: