diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-02-09 12:51:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-09 12:51:59 +0100 |
commit | 7f95e027b45842c62dac3bc415de22b97c1abcc3 (patch) | |
tree | 409244040a4acd551a4fa055c7b86c0c2331487e /doc/classes | |
parent | 480bfbd42ea53d3b0e66bb6cd54b30eff1bf9634 (diff) | |
parent | 4774043f8e38a9efb0991458cf0f6d4636329d93 (diff) | |
download | redot-engine-7f95e027b45842c62dac3bc415de22b97c1abcc3.tar.gz |
Merge pull request #35814 from timothyqiu/line-edit-shortcut
Adds CTRL-A CTRL-E support to LineEdit on macOS
Diffstat (limited to 'doc/classes')
-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 512401d2de..f2574360cb 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> |