diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-24 01:11:42 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-24 01:11:42 +0100 |
commit | 0e966b39b410ac4ca2be7400b14f23d5859bdf57 (patch) | |
tree | 3fea0197457bbf4e1a8ac8e8c797060663d4aa71 /editor/code_editor.h | |
parent | fe01776f05b1787b28b4a270d53037a3c25f4ca2 (diff) | |
parent | de8b6f7a3c1254254fd1079ef9a0a4614cc0dfc3 (diff) | |
download | redot-engine-0e966b39b410ac4ca2be7400b14f23d5859bdf57.tar.gz |
Merge pull request #66481 from MewPurPur/auto-stringname-nodepath
Add editor settings for autocompletion with NodePath and StringName
Diffstat (limited to 'editor/code_editor.h')
-rw-r--r-- | editor/code_editor.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/code_editor.h b/editor/code_editor.h index c888619ac0..87031b672c 100644 --- a/editor/code_editor.h +++ b/editor/code_editor.h @@ -184,6 +184,8 @@ class CodeTextEditor : public VBoxContainer { Color completion_font_color; Color completion_string_color; + Color completion_string_name_color; + Color completion_node_path_color; Color completion_comment_color; Color completion_doc_comment_color; CodeTextEditorCodeCompleteFunc code_complete_func; |