diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2019-04-03 22:29:06 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2019-04-04 00:44:21 +0200 |
commit | 9b86233e324ec117bc73e8a5ac001f46f8140011 (patch) | |
tree | 24474cc08c2d29d90f00d6c1d75828f99e9f07e1 | |
parent | 40acc3ecdc4ca63040fec3ea30eead21523bade6 (diff) |
Document built-in LineEdit keybindings
-rw-r--r-- | doc/classes/LineEdit.xml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/doc/classes/LineEdit.xml b/doc/classes/LineEdit.xml index 3d94a465dc..c659903b41 100644 --- a/doc/classes/LineEdit.xml +++ b/doc/classes/LineEdit.xml @@ -1,10 +1,19 @@ <?xml version="1.0" encoding="UTF-8" ?> <class name="LineEdit" inherits="Control" category="Core" version="3.2"> <brief_description> - Control that provides single line string editing. + Control that provides single-line string editing. </brief_description> <description> - LineEdit provides a single line string editor, used for text fields. + LineEdit provides a single-line string editor, used for text fields. It features many built-in shortcuts which will always be available: + - Ctrl + C: Copy + - Ctrl + X: Cut + - Ctrl + V or Ctrl + Y: Paste/"yank" + - Ctrl + Z: Undo + - Ctrl + Shift + Z: Redo + - Ctrl + U: Delete text from the cursor position to the beginning of the line + - Ctrl + K: Delete text from the cursor position to the end of the line + - Ctrl + A: Select all text + - Up/Down arrow: Move the cursor to the beginning/end of the line </description> <tutorials> </tutorials> |