| 32 | #[derive(Debug, Clone, Deserialize)] |
| 33 | #[serde(default)] |
| 34 | pub struct KeyConfig { |
| 35 | pub new_window: char, |
| 36 | pub focus_next: char, |
| 37 | pub focus_prev: char, |
| 38 | pub quit: char, |
| 39 | pub close_window: char, |
| 40 | pub move_left: char, |
| 41 | pub move_down: char, |
| 42 | pub move_up: char, |
| 43 | pub move_right: char, |
| 44 | pub resize_left: char, |
| 45 | pub resize_down: char, |
| 46 | pub resize_up: char, |
| 47 | pub resize_right: char, |
| 48 | } |
| 49 | |
| 50 | impl Default for KeyConfig { |
| 51 | fn default() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected