pub fn parse_key(notation: &str) -> Result<KeyCombo, String>Expand description
Parse key notation string into a KeyCombo.
Format: [modifier-]*key
Modifiers: C (Ctrl), S (Shift), A (Alt)
Keys: single char, F1–F12, Space, Tab, Enter, Esc
Examples:
C-s→ Ctrl+SC-S-s→ Ctrl+Shift+SA-p→ Alt+PF5→ F5C-Space→ Ctrl+Space