Move convert_indent into CodeEdit

This commit is contained in:
Paulb23 2023-05-01 21:41:50 +01:00
parent 64eeb04d2c
commit 0b3fba45c6
12 changed files with 282 additions and 153 deletions

View file

@ -126,6 +126,15 @@
Inserts the selected entry into the text. If [param replace] is true, any existing text is replaced rather then merged.
</description>
</method>
<method name="convert_indent">
<return type="void" />
<param index="0" name="from_line" type="int" default="-1" />
<param index="1" name="to_line" type="int" default="-1" />
<description>
Converts the indents of lines between [param from_line] and [param to_line] to tabs or spaces as set by [member indent_use_spaces].
Values of [code]-1[/code] convert the entire text.
</description>
</method>
<method name="do_indent">
<return type="void" />
<description>