From ad2f932b1a28701ecd49d0d99fd5107cf69cfbc8 Mon Sep 17 00:00:00 2001 From: a-kenji Date: Wed, 12 May 2021 16:01:52 +0200 Subject: [PATCH] Fix Default Keybind for Tab -> Resize Mode --- CHANGELOG.md | 1 + assets/config/default.yaml | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1adbec30a3..8c477958a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) * Terminal compatibility: preserve current style when clearing viewport (https://github.com/zellij-org/zellij/pull/493) * Fix propagation of plugin ui request (https://github.com/zellij-org/zellij/pull/495) * Handle pasted text properly (https://github.com/zellij-org/zellij/pull/494) +* Fix default keybinds for tab -> resize mode (https://github.com/zellij-org/zellij/pull/497) ## [0.9.0] - 2021-05-11 * Add more functionality to unbinding the default keybindings (https://github.com/zellij-org/zellij/pull/468) diff --git a/assets/config/default.yaml b/assets/config/default.yaml index cb6aa2485e..4582e79f60 100644 --- a/assets/config/default.yaml +++ b/assets/config/default.yaml @@ -108,8 +108,10 @@ keybinds: key: [Ctrl: 'g'] - action: [SwitchToMode: Pane,] key: [Ctrl: 'p',] + - action: [SwitchToMode: Resize,] + key: [Ctrl: 'r',] - action: [SwitchToMode: Normal,] - key: [Ctrl: 'r', Ctrl: 't', Char: "\n", Char: ' ',] + key: [Ctrl: 't', Char: "\n", Char: ' ',] - action: [SwitchToMode: Scroll,] key: [Ctrl: 's'] - action: [SwitchToMode: RenameTab, TabNameInput: [0],]