diff --git a/CHANGELOG.md b/CHANGELOG.md index 76de68ab..537344a0 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.20.0] - 2021-11-08 * Fix: improve performance of echoed keystrokes (https://github.com/zellij-org/zellij/pull/798) * Add: Use hyperlinks for the setup information (https://github.com/zellij-org/zellij/pull/768) * Feature: Rotate Pane location (https://github.com/zellij-org/zellij/pull/802) diff --git a/assets/plugins/status-bar.wasm b/assets/plugins/status-bar.wasm index 19972db3..1cd86ac3 100644 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 cb4ecaad..569b2738 100644 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 2da5f264..919d3c4f 100644 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 323c96e9..35dc2311 100644 --- a/example/default.yaml +++ b/example/default.yaml @@ -38,6 +38,12 @@ keybinds: key: [ Alt: '[',] - action: [FocusNextPane,] key: [ Alt: ']',] + - action: [Resize: Increase,] + key: [ Alt: '='] + - action: [Resize: Increase,] + key: [ Alt: '+'] + - action: [Resize: Decrease,] + key: [ Alt: '-'] locked: - action: [SwitchToMode: Normal,] key: [Ctrl: 'g',] @@ -66,6 +72,12 @@ keybinds: key: [Char: 'k', Up, ] - action: [Resize: Right,] key: [Char: 'l', Right,] + - action: [Resize: Increase,] + key: [Char: '='] + - action: [Resize: Increase,] + key: [ Alt: '+'] + - action: [Resize: Decrease,] + key: [Char: '-'] - action: [NewPane: ,] key: [ Alt: 'n',] - action: [MoveFocus: Left,] @@ -140,6 +152,8 @@ keybinds: key: [Ctrl: 'o',] - action: [Quit] key: [Ctrl: 'q'] + - action: [MovePane: ,] + key: [Char: 'n', Char: "\t",] - action: [MovePane: Left,] key: [Char: 'h', Left,] - action: [MovePane: Down,] @@ -251,6 +265,10 @@ keybinds: key: [Ctrl: 'f', PageDown, Right, Char: 'l',] - action: [PageScrollUp,] key: [Ctrl: 'b', PageUp, Left, Char: 'h',] + - action: [HalfPageScrollDown,] + key: [Char: 'd',] + - action: [HalfPageScrollUp,] + key: [Char: 'u',] - action: [NewPane: ,] key: [ Alt: 'n',] - action: [MoveFocus: Left,]