chore(release): v0.22.0

This commit is contained in:
Aram Drevekenin 2021-12-13 15:52:53 +01:00
parent 514d9c9b0e
commit 92f902ef7e
2 changed files with 33 additions and 8 deletions

View File

@ -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/)
## [Unreleased]
## [0.22.0] - 2021-12-13
* 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: 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: 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: 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)
* 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)

View File

@ -135,6 +135,8 @@ keybinds:
key: [ Alt: '[',]
- action: [FocusNextPane,]
key: [ Alt: ']',]
- action: [SwitchToMode: RenamePane, PaneNameInput: [0],]
key: [Char: 'c']
move:
- action: [SwitchToMode: Locked,]
key: [Ctrl: 'g']
@ -304,6 +306,27 @@ keybinds:
key: [ Alt: '[',]
- action: [FocusNextPane,]
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:
- action: [SwitchToMode: Locked,]
key: [Ctrl: 'g']
@ -346,13 +369,13 @@ plugins:
# Choose the path to the default shell that zellij will use for opening new panes
# Default: $SHELL
# default_shell: fish
#default_shell: fish
# Toggle between having pane frames around the panes
# Options:
# - true
# - false (default)
#no_pane_frames: true
# - true (default)
# - false
#pane_frames: true
# Choose the theme that is specified in the themes section.
# Default: default
@ -366,6 +389,6 @@ plugins:
# On certain configurations, or terminals this could
# potentially interfere with copying text.
# Options:
# - true
# - false (default)
#disable_mouse_mode: true
# - true (default)
# - false
#mouse_mode: false