diff --git a/CHANGELOG.md b/CHANGELOG.md index c24659cf69..8caffa4a44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.26.0] - 2022-03-11 * 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: various action bindings to `tmux-mode` (https://github.com/zellij-org/zellij/pull/1098) diff --git a/assets/plugins/status-bar.wasm b/assets/plugins/status-bar.wasm index 1027aa321a..08bd71d304 100755 Binary files a/assets/plugins/status-bar.wasm and b/assets/plugins/status-bar.wasm differ diff --git a/assets/plugins/strider.wasm b/assets/plugins/strider.wasm index 2afaa00e15..5becf3a93d 100755 Binary files a/assets/plugins/strider.wasm and b/assets/plugins/strider.wasm differ diff --git a/assets/plugins/tab-bar.wasm b/assets/plugins/tab-bar.wasm index 7fca16e1e6..7e2f6f28c4 100755 Binary files a/assets/plugins/tab-bar.wasm and b/assets/plugins/tab-bar.wasm differ diff --git a/example/default.yaml b/example/default.yaml index ba3a891632..1e435fffab 100644 --- a/example/default.yaml +++ b/example/default.yaml @@ -446,8 +446,12 @@ keybinds: key: [Ctrl: 'o', Char: "\n", Char: ' ', Esc] - action: [SwitchToMode: Scroll,] key: [Ctrl: 's'] + - action: [SwitchToMode: Scroll,] + key: [ Char: '['] - action: [Quit,] key: [Ctrl: 'q',] + - action: [Write: [2,], SwitchToMode: Normal] + key: [Ctrl: 'b'] - action: [NewPane: Down, SwitchToMode: Normal,] key: [Char: "\"",] - action: [NewPane: Right, SwitchToMode: Normal,] @@ -470,6 +474,14 @@ keybinds: key: [ Down,] - action: [MoveFocus: Up, SwitchToMode: Normal,] 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: ,] key: [ Alt: 'n',] - action: [MoveFocus: Left,] @@ -484,12 +496,16 @@ keybinds: key: [ Alt: '[',] - action: [FocusNextPane,] key: [ Alt: ']',] + - action: [FocusNextPane,] + key: [ Char: 'o'] - action: [Resize: Increase,] key: [ Alt: '='] - action: [Resize: Increase,] key: [ Alt: '+'] - action: [Resize: Decrease,] key: [ Alt: '-'] + - action: [Detach,] + key: [Char: 'd',] plugins: - path: tab-bar tag: tab-bar