2020-07-15 08:43:21 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
<class name= "EditorSyntaxHighlighter" inherits= "SyntaxHighlighter" version= "4.0" >
<brief_description >
2020-10-11 18:07:33 +02:00
Base Syntax highlighter resource for the [ScriptEditor].
2020-07-15 08:43:21 +02:00
</brief_description>
<description >
2020-10-11 18:07:33 +02:00
Base syntax highlighter resource all editor syntax highlighters extend from, it is used in the [ScriptEditor].
2021-10-11 19:13:31 +02:00
Add a syntax highlighter to an individual script by calling [method ScriptEditorBase.add_syntax_highlighter]. To apply to all scripts on open, call [method ScriptEditor.register_syntax_highlighter]
2020-07-15 08:43:21 +02:00
</description>
<tutorials >
</tutorials>
<methods >
2021-08-22 03:52:44 +02:00
<method name= "_get_name" qualifiers= "virtual const" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
2020-07-15 08:43:21 +02:00
<description >
2020-10-11 18:07:33 +02:00
Virtual method which can be overridden to return the syntax highlighter name.
2020-07-15 08:43:21 +02:00
</description>
</method>
2021-08-22 03:52:44 +02:00
<method name= "_get_supported_languages" qualifiers= "virtual const" >
2021-07-30 15:28:05 +02:00
<return type= "Array" />
2020-07-15 08:43:21 +02:00
<description >
2020-10-11 18:07:33 +02:00
Virtual method which can be overridden to return the supported language names.
2020-07-15 08:43:21 +02:00
</description>
</method>
</methods>
</class>