Skip to content

Commit a57f4a8

Browse files
committed
Fix display vim bindings (j and k were swapped)
1 parent d8fd4b2 commit a57f4a8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

data/keybindings.ron

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,16 +67,16 @@
6767
(modifiers: [Super, Alt], key: "Up"): SwitchOutput(Up),
6868
(modifiers: [Super, Alt], key: "Right"): SwitchOutput(Right),
6969
(modifiers: [Super, Alt], key: "h"): SwitchOutput(Left),
70-
(modifiers: [Super, Alt], key: "k"): SwitchOutput(Down),
71-
(modifiers: [Super, Alt], key: "j"): SwitchOutput(Up),
70+
(modifiers: [Super, Alt], key: "k"): SwitchOutput(Up),
71+
(modifiers: [Super, Alt], key: "j"): SwitchOutput(Down),
7272
(modifiers: [Super, Alt], key: "l"): SwitchOutput(Right),
7373
(modifiers: [Super, Shift, Alt], key: "Left"): MoveToOutput(Left),
7474
(modifiers: [Super, Shift, Alt], key: "Down"): MoveToOutput(Down),
7575
(modifiers: [Super, Shift, Alt], key: "Up"): MoveToOutput(Up),
7676
(modifiers: [Super, Shift, Alt], key: "Right"): MoveToOutput(Right),
7777
(modifiers: [Super, Shift, Alt], key: "h"): MoveToOutput(Left),
78-
(modifiers: [Super, Shift, Alt], key: "k"): MoveToOutput(Down),
79-
(modifiers: [Super, Shift, Alt], key: "j"): MoveToOutput(Up),
78+
(modifiers: [Super, Shift, Alt], key: "k"): MoveToOutput(Up),
79+
(modifiers: [Super, Shift, Alt], key: "j"): MoveToOutput(Down),
8080
(modifiers: [Super, Shift, Alt], key: "l"): MoveToOutput(Right),
8181

8282
(modifiers: [Super], key: "o"): ToggleOrientation,

0 commit comments

Comments
 (0)