Merge pull request #4253 from Paulb23/toggle_syntax_highlighting
Option to toggle syntax highlighting
This commit is contained in:
commit
e26f3dc03a
2 changed files with 4 additions and 1 deletions
|
@ -409,6 +409,8 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> 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);
|
||||
|
||||
|
|
|
@ -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<String> keywords;
|
||||
script->get_language()->get_reserved_words(&keywords);
|
||||
for(List<String>::Element *E=keywords.front();E;E=E->next()) {
|
||||
|
@ -1950,6 +1949,7 @@ void ScriptEditor::edit(const Ref<Script>& p_script) {
|
|||
ste->get_text_edit()->set_tab_size(EditorSettings::get_singleton()->get("text_editor/tab_size"));
|
||||
ste->get_text_edit()->set_draw_tabs(EditorSettings::get_singleton()->get("text_editor/draw_tabs"));
|
||||
ste->get_text_edit()->set_show_line_numbers(EditorSettings::get_singleton()->get("text_editor/show_line_numbers"));
|
||||
ste->get_text_edit()->set_syntax_coloring(EditorSettings::get_singleton()->get("text_editor/syntax_highlighting"));
|
||||
ste->get_text_edit()->set_highlight_all_occurrences(EditorSettings::get_singleton()->get("text_editor/highlight_all_occurrences"));
|
||||
ste->get_text_edit()->set_callhint_settings(
|
||||
EditorSettings::get_singleton()->get("text_editor/put_callhint_tooltip_below_current_line"),
|
||||
|
@ -2091,6 +2091,7 @@ void ScriptEditor::_editor_settings_changed() {
|
|||
ste->get_text_edit()->set_tab_size(EditorSettings::get_singleton()->get("text_editor/tab_size"));
|
||||
ste->get_text_edit()->set_draw_tabs(EditorSettings::get_singleton()->get("text_editor/draw_tabs"));
|
||||
ste->get_text_edit()->set_show_line_numbers(EditorSettings::get_singleton()->get("text_editor/show_line_numbers"));
|
||||
ste->get_text_edit()->set_syntax_coloring(EditorSettings::get_singleton()->get("text_editor/syntax_highlighting"));
|
||||
ste->get_text_edit()->set_highlight_all_occurrences(EditorSettings::get_singleton()->get("text_editor/highlight_all_occurrences"));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue