chore(release): v0.26.0

This commit is contained in:
Aram Drevekenin 2022-03-11 15:45:35 +01:00
parent f3d9681ffd
commit 93642b08bf
5 changed files with 18 additions and 0 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.26.0] - 2022-03-11
* Fix: invalid assignment of `client_id` (https://github.com/zellij-org/zellij/pull/1052) * Fix: invalid assignment of `client_id` (https://github.com/zellij-org/zellij/pull/1052)
* Add: action to send `^b` in `tmux-mode` (https://github.com/zellij-org/zellij/pull/1106) * Add: action to send `^b` in `tmux-mode` (https://github.com/zellij-org/zellij/pull/1106)
* Add: various action bindings to `tmux-mode` (https://github.com/zellij-org/zellij/pull/1098) * Add: various action bindings to `tmux-mode` (https://github.com/zellij-org/zellij/pull/1098)

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -446,8 +446,12 @@ keybinds:
key: [Ctrl: 'o', Char: "\n", Char: ' ', Esc] key: [Ctrl: 'o', Char: "\n", Char: ' ', Esc]
- action: [SwitchToMode: Scroll,] - action: [SwitchToMode: Scroll,]
key: [Ctrl: 's'] key: [Ctrl: 's']
- action: [SwitchToMode: Scroll,]
key: [ Char: '[']
- action: [Quit,] - action: [Quit,]
key: [Ctrl: 'q',] key: [Ctrl: 'q',]
- action: [Write: [2,], SwitchToMode: Normal]
key: [Ctrl: 'b']
- action: [NewPane: Down, SwitchToMode: Normal,] - action: [NewPane: Down, SwitchToMode: Normal,]
key: [Char: "\"",] key: [Char: "\"",]
- action: [NewPane: Right, SwitchToMode: Normal,] - action: [NewPane: Right, SwitchToMode: Normal,]
@ -470,6 +474,14 @@ keybinds:
key: [ Down,] key: [ Down,]
- action: [MoveFocus: Up, SwitchToMode: Normal,] - action: [MoveFocus: Up, SwitchToMode: Normal,]
key: [ Up,] key: [ Up,]
- action: [MoveFocus: Left, SwitchToMode: Normal,]
key: [ Char: 'h']
- action: [MoveFocus: Right, SwitchToMode: Normal,]
key: [ Char: 'l']
- action: [MoveFocus: Down, SwitchToMode: Normal,]
key: [ Char: 'j']
- action: [MoveFocus: Up, SwitchToMode: Normal,]
key: [ Char: 'k']
- action: [NewPane: ,] - action: [NewPane: ,]
key: [ Alt: 'n',] key: [ Alt: 'n',]
- action: [MoveFocus: Left,] - action: [MoveFocus: Left,]
@ -484,12 +496,16 @@ keybinds:
key: [ Alt: '[',] key: [ Alt: '[',]
- action: [FocusNextPane,] - action: [FocusNextPane,]
key: [ Alt: ']',] key: [ Alt: ']',]
- action: [FocusNextPane,]
key: [ Char: 'o']
- action: [Resize: Increase,] - action: [Resize: Increase,]
key: [ Alt: '='] key: [ Alt: '=']
- action: [Resize: Increase,] - action: [Resize: Increase,]
key: [ Alt: '+'] key: [ Alt: '+']
- action: [Resize: Decrease,] - action: [Resize: Decrease,]
key: [ Alt: '-'] key: [ Alt: '-']
- action: [Detach,]
key: [Char: 'd',]
plugins: plugins:
- path: tab-bar - path: tab-bar
tag: tab-bar tag: tab-bar