Add Ctrl+/ as a shortcut to toggle comment in addition to Ctrl+K
This commit is contained in:
parent
79a9e79561
commit
df3a1c18f1
1 changed files with 1 additions and 1 deletions
|
@ -2293,7 +2293,7 @@ void ScriptTextEditor::register_editor() {
|
|||
|
||||
ED_SHORTCUT("script_text_editor/indent", TTR("Indent"), Key::NONE);
|
||||
ED_SHORTCUT("script_text_editor/unindent", TTR("Unindent"), KeyModifierMask::SHIFT | Key::TAB);
|
||||
ED_SHORTCUT("script_text_editor/toggle_comment", TTR("Toggle Comment"), KeyModifierMask::CMD_OR_CTRL | Key::K);
|
||||
ED_SHORTCUT_ARRAY("script_text_editor/toggle_comment", TTR("Toggle Comment"), { int32_t(KeyModifierMask::CMD_OR_CTRL | Key::K), int32_t(KeyModifierMask::CMD_OR_CTRL | Key::SLASH) });
|
||||
ED_SHORTCUT("script_text_editor/toggle_fold_line", TTR("Fold/Unfold Line"), KeyModifierMask::ALT | Key::F);
|
||||
ED_SHORTCUT_OVERRIDE("script_text_editor/toggle_fold_line", "macos", KeyModifierMask::CTRL | KeyModifierMask::META | Key::F);
|
||||
ED_SHORTCUT("script_text_editor/fold_all_lines", TTR("Fold All Lines"), Key::NONE);
|
||||
|
|
Loading…
Reference in a new issue