chore(release): v0.22.0
This commit is contained in:
parent
514d9c9b0e
commit
92f902ef7e
2 changed files with 33 additions and 8 deletions
|
|
@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.22.0] - 2021-12-13
|
||||||
* Fix: missing themes in configuration merge (https://github.com/zellij-org/zellij/pull/913)
|
* Fix: missing themes in configuration merge (https://github.com/zellij-org/zellij/pull/913)
|
||||||
* Fix: add `gray` to theme section (https://github.com/zellij-org/zellij/pull/914)
|
* Fix: add `gray` to theme section (https://github.com/zellij-org/zellij/pull/914)
|
||||||
* Fix: prevent zellij session from attaching to itself (https://github.com/zellij-org/zellij/pull/911)
|
* Fix: prevent zellij session from attaching to itself (https://github.com/zellij-org/zellij/pull/911)
|
||||||
|
|
@ -13,7 +15,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
||||||
* Fix: update example config options (https://github.com/zellij-org/zellij/pull/920)
|
* Fix: update example config options (https://github.com/zellij-org/zellij/pull/920)
|
||||||
* Fix: correct handling of unbinds (https://github.com/zellij-org/zellij/issues/923)
|
* Fix: correct handling of unbinds (https://github.com/zellij-org/zellij/issues/923)
|
||||||
* Fix: improve perfomance when resizing window with a large scrollback buffer (https://github.com/zellij-org/zellij/pull/895)
|
* Fix: improve perfomance when resizing window with a large scrollback buffer (https://github.com/zellij-org/zellij/pull/895)
|
||||||
* Fix: support multiple users in plugins
|
* Fix: support multiple users in plugins (https://github.com/zellij-org/zellij/pull/930)
|
||||||
* Fix: update default layouts (https://github.com/zellij-org/zellij/pull/926)
|
* Fix: update default layouts (https://github.com/zellij-org/zellij/pull/926)
|
||||||
* Add: infrastructure to show distinct tips in the `status-bar` plugin (https://github.com/zellij-org/zellij/pull/926)
|
* Add: infrastructure to show distinct tips in the `status-bar` plugin (https://github.com/zellij-org/zellij/pull/926)
|
||||||
* Feature: Allow naming panes (https://github.com/zellij-org/zellij/pull/928)
|
* Feature: Allow naming panes (https://github.com/zellij-org/zellij/pull/928)
|
||||||
|
|
|
||||||
|
|
@ -135,6 +135,8 @@ keybinds:
|
||||||
key: [ Alt: '[',]
|
key: [ Alt: '[',]
|
||||||
- action: [FocusNextPane,]
|
- action: [FocusNextPane,]
|
||||||
key: [ Alt: ']',]
|
key: [ Alt: ']',]
|
||||||
|
- action: [SwitchToMode: RenamePane, PaneNameInput: [0],]
|
||||||
|
key: [Char: 'c']
|
||||||
move:
|
move:
|
||||||
- action: [SwitchToMode: Locked,]
|
- action: [SwitchToMode: Locked,]
|
||||||
key: [Ctrl: 'g']
|
key: [Ctrl: 'g']
|
||||||
|
|
@ -304,6 +306,27 @@ keybinds:
|
||||||
key: [ Alt: '[',]
|
key: [ Alt: '[',]
|
||||||
- action: [FocusNextPane,]
|
- action: [FocusNextPane,]
|
||||||
key: [ Alt: ']',]
|
key: [ Alt: ']',]
|
||||||
|
renamepane:
|
||||||
|
- action: [SwitchToMode: Normal,]
|
||||||
|
key: [Ctrl: 'c', Ctrl: 's', Char: ' ',]
|
||||||
|
- action: [SwitchToMode: Pane,]
|
||||||
|
key: [Char: "\n",]
|
||||||
|
- action: [PaneNameInput: [27] , SwitchToMode: Pane,]
|
||||||
|
key: [Esc,]
|
||||||
|
- action: [NewPane: ,]
|
||||||
|
key: [ Alt: 'n',]
|
||||||
|
- action: [MoveFocus: Left,]
|
||||||
|
key: [ Alt: 'h',]
|
||||||
|
- action: [MoveFocus: Right,]
|
||||||
|
key: [ Alt: 'l',]
|
||||||
|
- action: [MoveFocus: Down,]
|
||||||
|
key: [ Alt: 'j',]
|
||||||
|
- action: [MoveFocus: Up,]
|
||||||
|
key: [ Alt: 'k',]
|
||||||
|
- action: [FocusPreviousPane,]
|
||||||
|
key: [ Alt: '[',]
|
||||||
|
- action: [FocusNextPane,]
|
||||||
|
key: [ Alt: ']',]
|
||||||
session:
|
session:
|
||||||
- action: [SwitchToMode: Locked,]
|
- action: [SwitchToMode: Locked,]
|
||||||
key: [Ctrl: 'g']
|
key: [Ctrl: 'g']
|
||||||
|
|
@ -346,13 +369,13 @@ plugins:
|
||||||
|
|
||||||
# Choose the path to the default shell that zellij will use for opening new panes
|
# Choose the path to the default shell that zellij will use for opening new panes
|
||||||
# Default: $SHELL
|
# Default: $SHELL
|
||||||
# default_shell: fish
|
#default_shell: fish
|
||||||
|
|
||||||
# Toggle between having pane frames around the panes
|
# Toggle between having pane frames around the panes
|
||||||
# Options:
|
# Options:
|
||||||
# - true
|
# - true (default)
|
||||||
# - false (default)
|
# - false
|
||||||
#no_pane_frames: true
|
#pane_frames: true
|
||||||
|
|
||||||
# Choose the theme that is specified in the themes section.
|
# Choose the theme that is specified in the themes section.
|
||||||
# Default: default
|
# Default: default
|
||||||
|
|
@ -366,6 +389,6 @@ plugins:
|
||||||
# On certain configurations, or terminals this could
|
# On certain configurations, or terminals this could
|
||||||
# potentially interfere with copying text.
|
# potentially interfere with copying text.
|
||||||
# Options:
|
# Options:
|
||||||
# - true
|
# - true (default)
|
||||||
# - false (default)
|
# - false
|
||||||
#disable_mouse_mode: true
|
#mouse_mode: false
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue