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.
This commit is contained in:
a-kenji 2021-05-03 09:57:02 +02:00
parent bf6386f495
commit 118e5a10cb
2 changed files with 9 additions and 12 deletions

View file

@ -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) * 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) * 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) * 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 ## [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) * Doesn't quit anymore on single `q` press while in tab mode (https://github.com/zellij-org/zellij/pull/342)

View file

@ -55,13 +55,13 @@ keybinds:
- action: [NewPane: ,] - action: [NewPane: ,]
key: [ Alt: 'n',] key: [ Alt: 'n',]
- action: [MoveFocus: Left,] - action: [MoveFocus: Left,]
key: [ Alt: 'h', Left,] key: [ Alt: 'h',]
- action: [MoveFocus: Right,] - action: [MoveFocus: Right,]
key: [ Alt: 'l', Right,] key: [ Alt: 'l',]
- action: [MoveFocus: Down,] - action: [MoveFocus: Down,]
key: [ Alt: 'j', Down,] key: [ Alt: 'j',]
- action: [MoveFocus: Up,] - action: [MoveFocus: Up,]
key: [ Alt: 'k', Up,] key: [ Alt: 'k',]
- action: [FocusPreviousPane,] - action: [FocusPreviousPane,]
key: [ Alt: '[',] key: [ Alt: '[',]
- action: [FocusNextPane,] - action: [FocusNextPane,]
@ -123,13 +123,9 @@ keybinds:
- action: [FocusNextPane,] - action: [FocusNextPane,]
key: [ Alt: ']',] key: [ Alt: ']',]
- action: [GoToPreviousTab,] - action: [GoToPreviousTab,]
key: [ Char: 'h',] key: [ Char: 'h', Left, Up, Char: 'k',]
- action: [GoToNextTab,] - action: [GoToNextTab,]
key: [ Char: 'l',] key: [ Char: 'l', Right,Down, Char: 'j']
- action: [GoToNextTab,]
key: [ Char: 'j',]
- action: [GoToPreviousTab,]
key: [ Char: 'k',]
- action: [NewTab,] - action: [NewTab,]
key: [ Char: 'n',] key: [ Char: 'n',]
- action: [CloseTab,] - action: [CloseTab,]
@ -177,9 +173,9 @@ keybinds:
- action: [ScrollUp,] - action: [ScrollUp,]
key: [Char: 'k', Up,] key: [Char: 'k', Up,]
- action: [PageScrollDown,] - action: [PageScrollDown,]
key: [Ctrl: 'f', PageDown,] key: [Ctrl: 'f', PageDown, Right, Char: 'l',]
- action: [PageScrollUp,] - action: [PageScrollUp,]
key: [Ctrl: 'b', PageUp,] key: [Ctrl: 'b', PageUp, Left, Char: 'h',]
- action: [NewPane: ,] - action: [NewPane: ,]
key: [ Alt: 'n',] key: [ Alt: 'n',]
- action: [MoveFocus: Left,] - action: [MoveFocus: Left,]