summaryrefslogtreecommitdiffstats
path: root/assets
diff options
context:
space:
mode:
authora-kenji <aks.kenji@protonmail.com>2021-05-03 09:57:02 +0200
committera-kenji <aks.kenji@protonmail.com>2021-05-03 12:26:30 +0200
commit118e5a10cbad44c9f524f246a65dfd4675916c53 (patch)
tree268ddd8bbde3adf8e18763cacd6396cd7d0c154f /assets
parentbf6386f4954ffa73225ef18cc02f087509f28765 (diff)
Fixes Default Keybinds in Resize Mode #440
Closes #440 Changes arrow keybinds from switching focus to resizing. Add arrow parity keybinds to scroll and tab modes.
Diffstat (limited to 'assets')
-rw-r--r--assets/config/default.yaml20
1 files changed, 8 insertions, 12 deletions
diff --git a/assets/config/default.yaml b/assets/config/default.yaml
index d7360c587..4d0bdac02 100644
--- a/assets/config/default.yaml
+++ b/assets/config/default.yaml
@@ -55,13 +55,13 @@ keybinds:
- action: [NewPane: ,]
key: [ Alt: 'n',]
- action: [MoveFocus: Left,]
- key: [ Alt: 'h', Left,]
+ key: [ Alt: 'h',]
- action: [MoveFocus: Right,]
- key: [ Alt: 'l', Right,]
+ key: [ Alt: 'l',]
- action: [MoveFocus: Down,]
- key: [ Alt: 'j', Down,]
+ key: [ Alt: 'j',]
- action: [MoveFocus: Up,]
- key: [ Alt: 'k', Up,]
+ key: [ Alt: 'k',]
- action: [FocusPreviousPane,]
key: [ Alt: '[',]
- action: [FocusNextPane,]
@@ -123,13 +123,9 @@ keybinds:
- action: [FocusNextPane,]
key: [ Alt: ']',]
- action: [GoToPreviousTab,]
- key: [ Char: 'h',]
- - action: [GoToNextTab,]
- key: [ Char: 'l',]
+ key: [ Char: 'h', Left, Up, Char: 'k',]
- action: [GoToNextTab,]
- key: [ Char: 'j',]
- - action: [GoToPreviousTab,]
- key: [ Char: 'k',]
+ key: [ Char: 'l', Right,Down, Char: 'j']
- action: [NewTab,]
key: [ Char: 'n',]
- action: [CloseTab,]
@@ -177,9 +173,9 @@ keybinds:
- action: [ScrollUp,]
key: [Char: 'k', Up,]
- action: [PageScrollDown,]
- key: [Ctrl: 'f', PageDown,]
+ key: [Ctrl: 'f', PageDown, Right, Char: 'l',]
- action: [PageScrollUp,]
- key: [Ctrl: 'b', PageUp,]
+ key: [Ctrl: 'b', PageUp, Left, Char: 'h',]
- action: [NewPane: ,]
key: [ Alt: 'n',]
- action: [MoveFocus: Left,]