Merge pull request #72751 from dalexeev/doc-comment-color
Highlight doc comments in a different color
This commit is contained in:
commit
71a8ac41fb
17 changed files with 86 additions and 6 deletions
|
|
@ -953,6 +953,9 @@
|
|||
<member name="text_editor/theme/highlighting/current_line_color" type="Color" setter="" getter="">
|
||||
The script editor's background color for the line the caret is currently on. This should be set to a translucent color so that it can display on top of other line color modifiers such as [member text_editor/theme/highlighting/mark_color].
|
||||
</member>
|
||||
<member name="text_editor/theme/highlighting/doc_comment_color" type="Color" setter="" getter="">
|
||||
The script editor's documentation comment color. In GDScript, this is used for comments starting with [code]##[/code]. In C#, this is used for comments starting with [code]///[/code] or [code]/**[/code].
|
||||
</member>
|
||||
<member name="text_editor/theme/highlighting/engine_type_color" type="Color" setter="" getter="">
|
||||
The script editor's engine type color ([Vector2], [Vector3], [Color], ...).
|
||||
</member>
|
||||
|
|
|
|||
|
|
@ -140,6 +140,11 @@
|
|||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="_get_doc_comment_delimiters" qualifiers="virtual const">
|
||||
<return type="PackedStringArray" />
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="_get_extension" qualifiers="virtual const">
|
||||
<return type="String" />
|
||||
<description>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue