From 7bf39e685810aa9007807f7f031293c4e52e0623 Mon Sep 17 00:00:00 2001 From: Jan Philipp Hafer Date: Fri, 23 Apr 2021 15:56:25 +0200 Subject: [PATCH] fix(keybinding): fix tab mode dont exit on simple 'q' press --- src/common/input/keybinds.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/common/input/keybinds.rs b/src/common/input/keybinds.rs index 8e04c44a..ee039f83 100644 --- a/src/common/input/keybinds.rs +++ b/src/common/input/keybinds.rs @@ -295,7 +295,6 @@ impl Keybinds { Action::TabNameInput(vec![0]), ], ); - defaults.insert(Key::Char('q'), vec![Action::Quit]); defaults.insert( Key::Ctrl('g'), vec![Action::SwitchToMode(InputMode::Normal)],