summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md1
-rw-r--r--assets/config/default.yaml20
2 files changed, 9 insertions, 12 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 838d84db6..99ac74ade 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
* Improve error reporting and tests of configuration (https://github.com/zellij-org/zellij/pull/423)
* Refactor install module to setup module (https://github.com/zellij-org/zellij/pull/431)
* Add theme support through xrdb (https://github.com/zellij-org/zellij/pull/239)
+* Fix default keybindings in resize mode and add arrow parity in tab and scroll mode (https://github.com/zellij-org/zellij/pull/441)
## [0.6.0] - 2021-04-29
* Doesn't quit anymore on single `q` press while in tab mode (https://github.com/zellij-org/zellij/pull/342)
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,]