From 6dfeabf453b234402043bf2107e2f6d88a7762ae Mon Sep 17 00:00:00 2001 From: mo8it Date: Sat, 2 Mar 2024 16:08:22 +0100 Subject: [PATCH] Use Alt instead of shift for newline in Gitui --- .config/gitui/key_bindings.ron | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/gitui/key_bindings.ron b/.config/gitui/key_bindings.ron index bcda9b0..245b17c 100644 --- a/.config/gitui/key_bindings.ron +++ b/.config/gitui/key_bindings.ron @@ -30,5 +30,5 @@ abort_merge: Some(( code: Char('M'), modifiers: "SHIFT")), commit: Some(( code: Enter, modifiers: "")), - newline: Some(( code: Enter, modifiers: "SHIFT")), + newline: Some(( code: Enter, modifiers: "ALT")), )