(&mut self)
| 211 | |
| 212 | |
| 213 | pub(crate) fn decrease_indentation(&mut self) { |
| 214 | if self.selection.is_selected { |
| 215 | self.decrease_selected_lines_indentation(); |
| 216 | } else { |
| 217 | self.decrease_current_line_indentation(); |
| 218 | } |
| 219 | } |
| 220 | |
| 221 | pub(crate) fn decrease_selected_lines_indentation(&mut self) { |
| 222 | if !self.selection.is_selected { |
no test coverage detected