iced-rs / iced

A cross-platform GUI library for Rust, inspired by Elm
https://iced.rs
MIT License
26.34k stars 1.28k forks source link

Implement macOS-specific key shortcuts with `Control` modifier for text input #2801

Open rhysd opened 2 months ago

rhysd commented 2 months ago

macOS provides several standard key shortcuts with Control modifier key. However iced does not implement them for TextInput 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:

airstrike commented 2 months ago

TIL... We should implement these for text_editor as well for consistency.