From afa10fe756d1320a9b246057cfa8ed740a05d94b Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Sun, 23 May 2021 11:35:49 +0200 Subject: [PATCH] help note: external editor key bind (closes #728) plain chars will be interpreted as text. --- vim_style_key_config.ron | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/vim_style_key_config.ron b/vim_style_key_config.ron index 94f5556a..544ea889 100644 --- a/vim_style_key_config.ron +++ b/vim_style_key_config.ron @@ -23,14 +23,16 @@ focus_above: ( code: Char('k'), modifiers: ( bits: 0,),), focus_below: ( code: Char('j'), modifiers: ( bits: 0,),), + open_help: ( code: F(1), modifiers: ( bits: 0,),), + exit: ( code: Char('Q'), modifiers: ( bits: 1,),), exit_popup: ( code: Esc, modifiers: ( bits: 0,),), open_commit: ( code: Char('c'), modifiers: ( bits: 0,),), - // Note: the shift modifier does not work for open_commit_editor + // Also just plain text characters will not work because the commit + // msg editor will interpret them as text input open_commit_editor: ( code: Char('e'), modifiers: ( bits: 2,),), - open_help: ( code: F(1), modifiers: ( bits: 0,),), move_left: ( code: Char('h'), modifiers: ( bits: 0,),), move_right: ( code: Char('l'), modifiers: ( bits: 0,),),