From 36e9f7754b2f874d87dee435489ff21d92b98c69 Mon Sep 17 00:00:00 2001 From: Benedykt Jaworski Date: Thu, 15 Jul 2021 16:34:00 +0200 Subject: [PATCH] vim style config: allow Q in pop-up inputs (#818) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change `exit` (which exits the app regardless of context) to Ctrl+C (which doesn’t cause quitting on upper-case `Q` insert in popup inputs, cf. #771). --- vim_style_key_config.ron | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vim_style_key_config.ron b/vim_style_key_config.ron index 5d505870..f058f4f7 100644 --- a/vim_style_key_config.ron +++ b/vim_style_key_config.ron @@ -26,8 +26,8 @@ open_help: ( code: F(1), modifiers: ( bits: 0,),), - exit: ( code: Char('Q'), modifiers: ( bits: 1,),), - quit: ( code: Char('q'), modifiers: ( bits: 0,),), + exit: ( code: Char('c'), modifiers: ( bits: 2,),), + quit: ( code: Char('q'), modifiers: ( bits: 0,),), exit_popup: ( code: Esc, modifiers: ( bits: 0,),), open_commit: ( code: Char('c'), modifiers: ( bits: 0,),),