Merge pull request #111547 from sockeye-d/script-editor-join-lines

Add script editor `join_lines` keybind
This commit is contained in:
Thaddeus Crews
2026-02-27 08:49:31 -06:00
9 changed files with 64 additions and 0 deletions
+5
View File
@@ -912,6 +912,11 @@ void CodeTextEditor::input(const Ref<InputEvent> &event) {
accept_event();
return;
}
if (ED_IS_SHORTCUT("script_text_editor/join_lines", key_event)) {
text_editor->join_lines();
accept_event();
return;
}
if (ED_IS_SHORTCUT("script_text_editor/duplicate_selection", key_event)) {
text_editor->duplicate_selection();
accept_event();