diff --git a/doc/classes/TextEdit.xml b/doc/classes/TextEdit.xml
index da7b50093f6..30eb8960d0e 100644
--- a/doc/classes/TextEdit.xml
+++ b/doc/classes/TextEdit.xml
@@ -32,7 +32,7 @@
- Add a keyword and its color.
+ Add a [code]keyword[/code] and its [Color].
@@ -47,21 +47,21 @@
- Clear all the syntax coloring information.
+ Clears all the syntax coloring information.
- Clear the undo history.
+ Clears the undo history.
- Copy the current selection.
+ Copy's the current text selection.
@@ -86,6 +86,8 @@
+ Moves the cursor at the specified [code]column[/code] index.
+ If [code]adjust_viewport[/code] is set to true, the viewport will center at the cursor position after the move occurs. Default value is [code]true[/code].
@@ -100,20 +102,23 @@
+ Moves the cursor at the specified [code]line[/code] index.
+ If [code]adjust_viewport[/code] is set to true, the viewport will center at the cursor position after the move occurs. Default value is [code]true[/code].
+ If [code]can_be_hidden[/code] is set to true, the specified [code]line[/code] can be hidden using [member set_line_as_hidden]. Default value is [code]true[/code].
- Cut the current selection.
+ Cut's the current selection.
- Clears the current selection.
+ Deselects the current selection.
@@ -143,6 +148,7 @@
+ Returns the [Color] of the specified [code]keyword[/code].
@@ -206,6 +212,7 @@
+ Returns a [String] text with the word under the mouse cursor location.
@@ -214,6 +221,7 @@
+ Returns whether the specified [code]keyword[/code] has a color set to it or not.
@@ -222,7 +230,7 @@
- Insert a given text at the cursor position.
+ Insert the specified text at the cursor position.
@@ -231,6 +239,7 @@
+ Returns whether the line at the specified index is folded or not.
@@ -239,6 +248,7 @@
+ Returns whether the line at the specified index is hidden or not.
@@ -254,6 +264,7 @@
+ Triggers a right click menu action by the specified index. See [enum MenuItems] for a list of available indexes.
@@ -322,6 +333,7 @@
+ If [code]true[/code], hides the line of the specified index.
@@ -352,6 +364,7 @@
+ Unhide all lines that were previously set to hidden by [member set_line_as_hidden].
@@ -376,9 +389,8 @@
If [code]true[/code], a right click displays the context menu.
-
-
+ If [code]true[/code], all occurrences of the selected text will be highlighted.
If [code]true[/code], the line containing the cursor is highlighted.
@@ -392,8 +404,10 @@
If [code]true[/code], line numbers are displayed to the left of the text.
+ If [code]true[/code], sets the [code]step[/code] of the scrollbars to [code]0.25[/code] which results in smoother scrolling.
+ If [code]true[/code], any custom color properties that have been set for this [TextEdit] will be visible.
String value of the [TextEdit].
@@ -467,16 +481,20 @@
Undoes the previous action.
+ Redoes the previous action.
+ Represents the size of the [enum MenuItems] enum.
+ Sets the background [Color] of this [TextEdit]. [member syntax_highlighting] has to be enabled.
+ Sets the [Color] of the breakpoints. [member breakpoint_gutter] has to be enabled.
@@ -503,40 +521,51 @@
+ Sets the current line highlight [Color]. [member highlight_current_line] has to be enabled.
+ Sets the default [Font].
+ Sets the font [Color].
+ Sets the [Color] of the line numbers. [member show_line_numbers] has to be enabled.
+ Sets the spacing between the lines.
+ Sets the [Color] of marked text.
+ Sets the [StyleBox] of this [TextEdit].
+ Sets the [StyleBox] of this [TextEdit] when [member read_only] is enabled.
+ Sets the highlight [Color] of text selections.
+ Sets a custom [Texture] for tab text characters.
+ Sets the highlight [Color] of multiple occurrences. [member highlight_all_occurrences] has to be enabled.