diff --git a/tools/editor/editor_settings.cpp b/tools/editor/editor_settings.cpp index 106193ac78a4e..e498c0c376c94 100644 --- a/tools/editor/editor_settings.cpp +++ b/tools/editor/editor_settings.cpp @@ -485,6 +485,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 d74ce7ca37a6b..fa1a9dfa7a4da 100644 --- a/tools/editor/plugins/script_editor_plugin.cpp +++ b/tools/editor/plugins/script_editor_plugin.cpp @@ -298,7 +298,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()) { @@ -1923,6 +1922,7 @@ void ScriptEditor::edit(const Ref