diff options
author | PucklaMotzer09 <jonaas.pucher000000@gmail.com> | 2022-10-09 17:07:42 +0200 |
---|---|---|
committer | PucklaMotzer09 <jonaas.pucher000000@gmail.com> | 2022-10-18 10:38:53 +0200 |
commit | e5354cacd0e85dc8c054179b40fecc2d7d24a8fd (patch) | |
tree | 73fb313a2571724e58717522369c18427d8c0105 /doc/classes/TextEdit.xml | |
parent | 39534a7aecc4ca4215af67244b23dda09ea339f8 (diff) |
Add Caret Insert Below and Above shortcuts to TextEdit
Diffstat (limited to 'doc/classes/TextEdit.xml')
-rw-r--r-- | doc/classes/TextEdit.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/classes/TextEdit.xml b/doc/classes/TextEdit.xml index b1fda25ecd..978fe34d8b 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" /> |