diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-07-14 09:49:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-14 09:49:02 +0200 |
commit | ca5958d1806d96e2d54e8b3336a96f0a02381a86 (patch) | |
tree | c738df29c03b2f056d7d15aea9fe7b5a4ad46cd4 /editor/code_editor.h | |
parent | 28e8347d6cb1e5e8945ba62b9678849046038bb6 (diff) | |
parent | bc4cee44582d2a90d0792d6b213f00be1043000b (diff) |
Merge pull request #38440 from Paulb23/syntax_highlighter_refactor
Syntax highlighter refactor
Diffstat (limited to 'editor/code_editor.h')
-rw-r--r-- | editor/code_editor.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/code_editor.h b/editor/code_editor.h index d3090b28c1..450c85c64b 100644 --- a/editor/code_editor.h +++ b/editor/code_editor.h @@ -174,6 +174,9 @@ class CodeTextEditor : public VBoxContainer { void _zoom_changed(); void _reset_zoom(); + Color completion_font_color; + Color completion_string_color; + Color completion_comment_color; CodeTextEditorCodeCompleteFunc code_complete_func; void *code_complete_ud; |