Merge pull request #111547 from sockeye-d/script-editor-join-lines
Add script editor `join_lines` keybind
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user