summaryrefslogtreecommitdiff
path: root/doc/classes/TextEdit.xml
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-10-31 10:32:07 +0100
committerRémi Verschelde <rverschelde@gmail.com>2022-10-31 10:32:07 +0100
commit273410ba5a5eae4ee9614f76a9c31770b934669a (patch)
tree53d252b0a92b221ccdf1c9d7d351f0d42ce14c9f /doc/classes/TextEdit.xml
parent996f7e5142b5055fca4b0fab2929c6082a76e404 (diff)
parente5354cacd0e85dc8c054179b40fecc2d7d24a8fd (diff)
Merge pull request #67139 from PucklaMotzer09/insert_caret_at_carets
Add Caret Insert Below and Above shortcuts to TextEdit
Diffstat (limited to 'doc/classes/TextEdit.xml')
-rw-r--r--doc/classes/TextEdit.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/classes/TextEdit.xml b/doc/classes/TextEdit.xml
index 879a355f25..2c64b78b49 100644
--- a/doc/classes/TextEdit.xml
+++ b/doc/classes/TextEdit.xml
@@ -63,6 +63,13 @@
Adds a new caret at the given location. Returns the index of the new caret, or [code]-1[/code] if the location is invalid.
</description>
</method>
+ <method name="add_caret_at_carets">
+ <return type="void" />
+ <param index="0" name="below" type="bool" />
+ <description>
+ Adds an additional caret above or below every caret. If [param below] is true the new caret will be added below and above otherwise.
+ </description>
+ </method>
<method name="add_gutter">
<return type="void" />
<param index="0" name="at" type="int" default="-1" />