mirror of
https://github.com/TermiT/Flycut.git
synced 2025-09-28 07:54:25 +08:00
New: Use j and k to move up and down the stack in the bezel. Thanks, vi.
This commit is contained in:
parent
1ca77a2661
commit
c268fa20ab
1 changed files with 2 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue