From 85c6a3dd0c7561b26196cb649c03c9bed96eee68 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Tue, 13 May 2025 14:26:20 +0200 Subject: [PATCH] Always have Enter submit in the debug console (#30564) Release Notes: - N/A --- assets/keymaps/default-linux.json | 7 +++++++ assets/keymaps/default-macos.json | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/assets/keymaps/default-linux.json b/assets/keymaps/default-linux.json index e2cf7090c6..7776554964 100644 --- a/assets/keymaps/default-linux.json +++ b/assets/keymaps/default-linux.json @@ -979,5 +979,12 @@ "bindings": { "ctrl-r": "diagnostics::ToggleDiagnosticsRefresh" } + }, + { + "context": "DebugConsole > Editor", + "use_key_equivalents": true, + "bindings": { + "enter": "menu::Confirm" + } } ] diff --git a/assets/keymaps/default-macos.json b/assets/keymaps/default-macos.json index 26631c2721..fc8633cf88 100644 --- a/assets/keymaps/default-macos.json +++ b/assets/keymaps/default-macos.json @@ -1085,5 +1085,12 @@ "bindings": { "ctrl-r": "diagnostics::ToggleDiagnosticsRefresh" } + }, + { + "context": "DebugConsole > Editor", + "use_key_equivalents": true, + "bindings": { + "enter": "menu::Confirm" + } } ]