Expand description
CapsWord key(s).
§JSON
Plain key code:
use smart_keymap::key::caps_word::Key;
let json = r#"
"ToggleCapsWord"
"#;
let expected_key: Key = Key::ToggleCapsWord;
let actual_key: Key = serde_json::from_str(json).unwrap();
assert_eq!(expected_key, actual_key);
Structs§
- Context
- Caps Word context.
Enums§
Constants§
- DEFAULT_
CONTEXT - The default Context.