MCPcopy Create free account
hub / github.com/ahmednooor/lino / command_decrease_indentation

Method command_decrease_indentation

src/lino/commands.rs:373–382  ·  view source on GitHub ↗
(&mut self)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 6

clear_task_feedbackMethod · 0.80
save_to_historyMethod · 0.80
decrease_indentationMethod · 0.80

Tested by

no test coverage detected