diff options
| author | Paulb23 | 2016-03-16 21:20:42 +0000 |
|---|---|---|
| committer | Rémi Verschelde | 2016-04-02 22:10:41 +0200 |
| commit | 8a78112e5b1f91459c0ac22aded0acd0948fbe9f (patch) | |
| tree | 5edfddc5ada20b2c5ef11504152d3187b602d1cd /tools/editor/editor_settings.cpp | |
| parent | 41326781d2abc5877436118b5e23a5bc759cce4c (diff) | |
| download | godot-8a78112e5b1f91459c0ac22aded0acd0948fbe9f.tar.gz godot-8a78112e5b1f91459c0ac22aded0acd0948fbe9f.tar.zst godot-8a78112e5b1f91459c0ac22aded0acd0948fbe9f.zip | |
Highlight all occurrences of selected word
(cherry picked from commit b0488cacf27cb98c4a0dd58661c83262236e18a0)
Diffstat (limited to 'tools/editor/editor_settings.cpp')
| -rw-r--r-- | tools/editor/editor_settings.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/editor/editor_settings.cpp b/tools/editor/editor_settings.cpp index 6c18e2e36..a2dd032f8 100644 --- a/tools/editor/editor_settings.cpp +++ b/tools/editor/editor_settings.cpp @@ -481,7 +481,9 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> p_extra_config) { set("text_editor/selection_color",Color::html("7b5dbe")); set("text_editor/brace_mismatch_color",Color(1,0.2,0.2)); 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/highlight_all_occurrences", true); set("text_editor/scroll_past_end_of_file", false); set("text_editor/tab_size", 4); |
