(&mut self)
| 371 | self.highlighting.should_send_text_to_highlighting_thread = true; |
| 372 | } |
| 373 | pub(crate) fn command_decrease_indentation(&mut self) { |
| 374 | self.clear_task_feedback(); |
| 375 | if !self.is_cursor_at_line_start() { |
| 376 | self.set_task_feedback_normal("Decreased indent.".to_string()); |
| 377 | } |
| 378 | self.save_to_history(); |
| 379 | self.decrease_indentation(); |
| 380 | self.update_last_cursor_col(); |
| 381 | self.highlighting.should_send_text_to_highlighting_thread = true; |
| 382 | } |
| 383 | |
| 384 | |
| 385 |
nothing calls this directly
no test coverage detected