From 321894728af775373323db6af2da221bed934a99 Mon Sep 17 00:00:00 2001 From: Adrian Wilkins Date: Fri, 29 Aug 2025 23:46:54 +0100 Subject: [PATCH] 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. --- data/keybindings.ron | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/keybindings.ron b/data/keybindings.ron index e02e152d..7014285c 100644 --- a/data/keybindings.ron +++ b/data/keybindings.ron @@ -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),