summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/classes/CodeEdit.xml45
-rw-r--r--doc/classes/TextEdit.xml8
2 files changed, 53 insertions, 0 deletions
diff --git a/doc/classes/CodeEdit.xml b/doc/classes/CodeEdit.xml
index 6a3f38f51e..1a6311c905 100644
--- a/doc/classes/CodeEdit.xml
+++ b/doc/classes/CodeEdit.xml
@@ -30,6 +30,18 @@
Override this method to define what happens when the user requests code completion. If [code]force[/code] is true, any checks should be bypassed.
</description>
</method>
+ <method name="add_auto_brace_completion_pair">
+ <return type="void">
+ </return>
+ <argument index="0" name="start_key" type="String">
+ </argument>
+ <argument index="1" name="end_key" type="String">
+ </argument>
+ <description>
+ Adds a brace pair.
+ Both the start and end keys must be symbols. Only the start key has to be unique.
+ </description>
+ </method>
<method name="add_code_completion_option">
<return type="void" />
<argument index="0" name="type" type="int" enum="CodeEdit.CodeCompletionKind" />
@@ -137,6 +149,15 @@
Folds the given line, if possible (see [method can_fold_line]).
</description>
</method>
+ <method name="get_auto_brace_completion_close_key" qualifiers="const">
+ <return type="String">
+ </return>
+ <argument index="0" name="open_key" type="String">
+ </argument>
+ <description>
+ Gets the matching auto brace close key for [code]open_key[/code].
+ </description>
+ </method>
<method name="get_bookmarked_lines" qualifiers="const">
<return type="Array" />
<description>
@@ -219,6 +240,24 @@
Returns the full text with char [code]0xFFFF[/code] at the caret location.
</description>
</method>
+ <method name="has_auto_brace_completion_close_key" qualifiers="const">
+ <return type="bool">
+ </return>
+ <argument index="0" name="close_key" type="String">
+ </argument>
+ <description>
+ Returns [code]true[/code] if close key [code]close_key[/code] exists.
+ </description>
+ </method>
+ <method name="has_auto_brace_completion_open_key" qualifiers="const">
+ <return type="bool">
+ </return>
+ <argument index="0" name="open_key" type="String">
+ </argument>
+ <description>
+ Returns [code]true[/code] if open key [code]open_key[/code] exists.
+ </description>
+ </method>
<method name="has_comment_delimiter" qualifiers="const">
<return type="bool" />
<argument index="0" name="start_key" type="String" />
@@ -378,6 +417,12 @@
</method>
</methods>
<members>
+ <member name="auto_brace_completion_enabled" type="bool" setter="set_auto_brace_completion_enabled" getter="is_auto_brace_completion_enabled" default="false">
+ Sets whether brace pairs should be autocompleted.
+ </member>
+ <member name="auto_brace_completion_pairs" type="Dictionary" setter="set_auto_brace_completion_pairs" getter="get_auto_brace_completion_pairs" default="{&quot;\&quot;&quot;: &quot;\&quot;&quot;,&quot;&apos;&quot;: &quot;&apos;&quot;,&quot;(&quot;: &quot;)&quot;,&quot;[&quot;: &quot;]&quot;,&quot;{&quot;: &quot;}&quot;}">
+ Sets the brace pairs to be autocompleted.
+ </member>
<member name="code_completion_enabled" type="bool" setter="set_code_completion_enabled" getter="is_code_completion_enabled" default="false">
Sets whether code completion is allowed.
</member>
diff --git a/doc/classes/TextEdit.xml b/doc/classes/TextEdit.xml
index 5444721e10..cc5c36bbd3 100644
--- a/doc/classes/TextEdit.xml
+++ b/doc/classes/TextEdit.xml
@@ -16,6 +16,14 @@
A virtual method that is called whenever backspace is triggered.
</description>
</method>
+ <method name="_handle_unicode_input" qualifiers="virtual">
+ <return type="void">
+ </return>
+ <argument index="0" name="unicode" type="int">
+ </argument>
+ <description>
+ </description>
+ </method>
<method name="add_gutter">
<return type="void" />
<argument index="0" name="at" type="int" default="-1" />