chore(release): v0.29.0

This commit is contained in:
Aram Drevekenin 2022-05-02 13:29:00 +02:00
parent 52123c5c04
commit be2659ed2e
2 changed files with 12 additions and 1 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/) The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
## [Unreleased] ## [Unreleased]
## [0.29.0] - 2022-05-02
* add: clarify copy to clipboard message (https://github.com/zellij-org/zellij/pull/1321) * add: clarify copy to clipboard message (https://github.com/zellij-org/zellij/pull/1321)
* Terminal compatibility: fix ANSI scrolling regression (https://github.com/zellij-org/zellij/pull/1324) * Terminal compatibility: fix ANSI scrolling regression (https://github.com/zellij-org/zellij/pull/1324)
* fix: send SIGHUP instead of SIGTERM when closing a pane (https://github.com/zellij-org/zellij/pull/1320) * fix: send SIGHUP instead of SIGTERM when closing a pane (https://github.com/zellij-org/zellij/pull/1320)

View file

@ -42,6 +42,9 @@ keybinds:
key: [ Alt: '+'] key: [ Alt: '+']
- action: [Resize: Decrease,] - action: [Resize: Decrease,]
key: [ Alt: '-'] key: [ Alt: '-']
# uncomment this and adjust key if using copy_on_select=false
# - action: [Copy: ]
# key: [ Alt: 'c']
locked: locked:
- action: [SwitchToMode: Normal,] - action: [SwitchToMode: Normal,]
key: [Ctrl: 'g',] key: [Ctrl: 'g',]
@ -316,6 +319,9 @@ keybinds:
key: [ Alt: '+'] key: [ Alt: '+']
- action: [Resize: Decrease,] - action: [Resize: Decrease,]
key: [ Alt: '-'] key: [ Alt: '-']
# uncomment this and adjust key if using copy_on_select=false
# - action: [Copy: ]
# key: [ Alt: 'c']
renametab: renametab:
- action: [SwitchToMode: Normal,] - action: [SwitchToMode: Normal,]
key: [Char: "\n", Ctrl: 'c', Esc] key: [Char: "\n", Ctrl: 'c', Esc]
@ -536,4 +542,7 @@ plugins:
# Options: # Options:
# - system (default) # - system (default)
# - primary # - primary
# copy_clipboard: primary #copy_clipboard: primary
# Enable or disable automatic copy (and clear) of selection when releasing mouse
#copy_on_select: true