()
| 12 | |
| 13 | impl LeaderKeyState { |
| 14 | pub fn new() -> Self { |
| 15 | Self { |
| 16 | active: false, |
| 17 | start_time: None, |
| 18 | leader_key: None, |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | pub fn start(&mut self, key: KeyCode) { |
| 23 | self.active = true; |
nothing calls this directly
no test coverage detected