Open rhysd opened 2 months ago
macOS provides several standard key shortcuts with Control modifier key. However iced does not implement them for TextInput widget.
Control
TextInput
https://support.apple.com/en-us/102650#:~:text=and%20iCloud%20Drive.-,Text%2Dediting%20shortcuts,-The%20behavior%20of
This PR implements the following key shortcuts for macOS:
Control + B
Control + F
Control + A
Control + E
Control + H
Control + D
TIL... We should implement these for text_editor as well for consistency.
text_editor
macOS provides several standard key shortcuts with
Control
modifier key. However iced does not implement them forTextInput
widget.https://support.apple.com/en-us/102650#:~:text=and%20iCloud%20Drive.-,Text%2Dediting%20shortcuts,-The%20behavior%20of
This PR implements the following key shortcuts for macOS:
Control + B
(move cursor left)Control + F
(move cursor right)Control + A
(move cursor to start)Control + E
(move cursor to end)Control + H
(delete character before cursor)Control + D
(delete character after cursor)