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; break;
case NSUpArrowFunctionKey: case NSUpArrowFunctionKey:
case NSLeftArrowFunctionKey: case NSLeftArrowFunctionKey:
case 0x6B: // k
[self stackUp]; [self stackUp];
break; break;
case NSDownArrowFunctionKey: case NSDownArrowFunctionKey:
case NSRightArrowFunctionKey: case NSRightArrowFunctionKey:
case 0x6A: // j
[self stackDown]; [self stackDown];
break; break;
case NSHomeFunctionKey: case NSHomeFunctionKey: