diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2020-02-01 13:35:16 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2020-02-01 13:35:16 +0800 |
commit | 4774043f8e38a9efb0991458cf0f6d4636329d93 (patch) | |
tree | f6a80e96d5874211ee3713d7b2e7bf2122d2b8fc /doc/classes/LineEdit.xml | |
parent | 188dc714b000bbdb086513dcff3dd4bc4f75a0e7 (diff) | |
download | redot-engine-4774043f8e38a9efb0991458cf0f6d4636329d93.tar.gz |
Adds CTRL-A CTRL-E support to LineEdit on macOS
Diffstat (limited to 'doc/classes/LineEdit.xml')
-rw-r--r-- | doc/classes/LineEdit.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/classes/LineEdit.xml b/doc/classes/LineEdit.xml index 59bad00f25..f60363c929 100644 --- a/doc/classes/LineEdit.xml +++ b/doc/classes/LineEdit.xml @@ -22,6 +22,8 @@ - Ctrl + N: Like the down arrow key, move the cursor to the next line - Ctrl + D: Like the Delete key, delete the character on the right side of cursor - Ctrl + H: Like the Backspace key, delete the character on the left side of the cursor + - Ctrl + A: Like the Home key, move the cursor to the beginning of the line + - Ctrl + E: Like the End key, move the cursor to the end of the line - Command + Left arrow: Like the Home key, move the cursor to the beginning of the line - Command + Right arrow: Like the End key, move the cursor to the end of the line </description> |