@@ -128,18 +128,27 @@ class Input(ScrollView):
128
128
| Key(s) | Description |
129
129
| :- | :- |
130
130
| left | Move the cursor left. |
131
+ | shift+left | Move cursor left and select. |
131
132
| ctrl+left | Move the cursor one word to the left. |
132
133
| right | Move the cursor right or accept the completion suggestion. |
134
+ | ctrl+shift+left | Move cursor left a word and select. |
135
+ | shift+right | Move cursor right and select. |
133
136
| ctrl+right | Move the cursor one word to the right. |
134
137
| backspace | Delete the character to the left of the cursor. |
138
+ | ctrl+shift+right | Move cursor right a word and select. |
135
139
| home,ctrl+a | Go to the beginning of the input. |
136
140
| end,ctrl+e | Go to the end of the input. |
141
+ | shift+home | Select up to the input start. |
142
+ | shift+end | Select up to the input end. |
137
143
| delete,ctrl+d | Delete the character to the right of the cursor. |
138
144
| enter | Submit the current value of the input. |
139
145
| ctrl+w | Delete the word to the left of the cursor. |
140
146
| ctrl+u | Delete everything to the left of the cursor. |
141
147
| ctrl+f | Delete the word to the right of the cursor. |
142
148
| ctrl+k | Delete everything to the right of the cursor. |
149
+ | ctrl+x | Cut selected text. |
150
+ | ctrl+c | Copy selected text. |
151
+ | ctrl+v | Paste text from the clipboard. |
143
152
"""
144
153
145
154
COMPONENT_CLASSES : ClassVar [set [str ]] = {
0 commit comments