(&self, keybind_name: &str, key: KeyEvent)
| 3125 | } |
| 3126 | |
| 3127 | fn matches_keybind(&self, keybind_name: &str, key: KeyEvent) -> bool { |
| 3128 | self.context |
| 3129 | .keybind |
| 3130 | .read() |
| 3131 | .match_key(keybind_name, key.code, key.modifiers) |
| 3132 | } |
| 3133 | |
| 3134 | fn sync_command_palette_labels(&mut self) { |
| 3135 | let show_thinking = *self.context.show_thinking.read(); |
no test coverage detected