diff --git a/tools/editor/editor_settings.cpp b/tools/editor/editor_settings.cpp index 8402a60438..255ad40bce 100644 --- a/tools/editor/editor_settings.cpp +++ b/tools/editor/editor_settings.cpp @@ -409,6 +409,8 @@ void EditorSettings::_load_defaults(Ref p_extra_config) { set("text_editor/current_line_color",Color(0.3,0.5,0.8,0.15)); set("text_editor/word_highlighted_color",Color(0.8,0.9,0.9,0.15)); + set("text_editor/syntax_highlighting", true); + set("text_editor/highlight_all_occurrences", true); set("text_editor/scroll_past_end_of_file", false); diff --git a/tools/editor/plugins/script_editor_plugin.cpp b/tools/editor/plugins/script_editor_plugin.cpp index 625dcd697f..30b75e8dcb 100644 --- a/tools/editor/plugins/script_editor_plugin.cpp +++ b/tools/editor/plugins/script_editor_plugin.cpp @@ -300,7 +300,6 @@ void ScriptTextEditor::_load_theme_settings() { Color keyword_color= EDITOR_DEF("text_editor/keyword_color",Color(0.5,0.0,0.2)); - get_text_edit()->set_syntax_coloring(true); List keywords; script->get_language()->get_reserved_words(&keywords); for(List::Element *E=keywords.front();E;E=E->next()) { @@ -1950,6 +1949,7 @@ void ScriptEditor::edit(const Ref