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:
Adrian Wilkins 2025-08-29 23:46:54 +01:00 committed by Victoria Brekenfeld
parent 174e3b00ec
commit 321894728a

View file

@ -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),