Fix vim-ish k and j discrepancy in keymap
`k` is up and `j` is down, but these two maps were mapped to the opposite sense.
This commit is contained in:
parent
174e3b00ec
commit
321894728a
1 changed files with 4 additions and 4 deletions
|
|
@ -50,16 +50,16 @@
|
|||
(modifiers: [Super, Ctrl], key: "Up"): PreviousWorkspace,
|
||||
(modifiers: [Super, Ctrl], key: "Right"): NextWorkspace,
|
||||
(modifiers: [Super, Ctrl], key: "h"): PreviousWorkspace,
|
||||
(modifiers: [Super, Ctrl], key: "k"): NextWorkspace,
|
||||
(modifiers: [Super, Ctrl], key: "j"): PreviousWorkspace,
|
||||
(modifiers: [Super, Ctrl], key: "j"): NextWorkspace,
|
||||
(modifiers: [Super, Ctrl], key: "k"): PreviousWorkspace,
|
||||
(modifiers: [Super, Ctrl], key: "l"): NextWorkspace,
|
||||
(modifiers: [Super, Shift, Ctrl], key: "Left"): MoveToPreviousWorkspace,
|
||||
(modifiers: [Super, Shift, Ctrl], key: "Down"): MoveToNextWorkspace,
|
||||
(modifiers: [Super, Shift, Ctrl], key: "Up"): MoveToPreviousWorkspace,
|
||||
(modifiers: [Super, Shift, Ctrl], key: "Right"): MoveToNextWorkspace,
|
||||
(modifiers: [Super, Shift, Ctrl], key: "h"): MoveToPreviousWorkspace,
|
||||
(modifiers: [Super, Shift, Ctrl], key: "k"): MoveToNextWorkspace,
|
||||
(modifiers: [Super, Shift, Ctrl], key: "j"): MoveToPreviousWorkspace,
|
||||
(modifiers: [Super, Shift, Ctrl], key: "j"): MoveToNextWorkspace,
|
||||
(modifiers: [Super, Shift, Ctrl], key: "k"): MoveToPreviousWorkspace,
|
||||
(modifiers: [Super, Shift, Ctrl], key: "l"): MoveToNextWorkspace,
|
||||
|
||||
(modifiers: [Super, Alt], key: "Left"): SwitchOutput(Left),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue