1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#![allow(dead_code)] /// Keymap configuration (by name). #[derive(Debug, Clone)] pub struct KeymapConfig { pub name: String, } impl KeymapConfig { pub fn default() -> Self { Self { name: "default".to_string(), } } }