From 9bd3e156f5d4db33d1cfc3b5868a493dba8ebc09 Mon Sep 17 00:00:00 2001 From: Cole Miller Date: Tue, 11 Mar 2025 00:26:13 -0400 Subject: [PATCH] Fix enter binding in git panel's commit editor on Linux (#26427) Closes #26110 Release Notes: - Git Beta: fixed being unable to enter newline in the git panel's commit editor on Linux --- assets/keymaps/default-linux.json | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/keymaps/default-linux.json b/assets/keymaps/default-linux.json index e7b29adfaf..8d01883788 100644 --- a/assets/keymaps/default-linux.json +++ b/assets/keymaps/default-linux.json @@ -787,6 +787,7 @@ "escape": "git_panel::FocusChanges", "tab": "git_panel::FocusChanges", "shift-tab": "git_panel::FocusChanges", + "enter": "editor::Newline", "ctrl-enter": "git::Commit", "alt-up": "git_panel::FocusChanges", "alt-l": "git::GenerateCommitMessage"