(&self)
| 132 | } |
| 133 | |
| 134 | fn input_line_char_counts(&self) -> Vec<usize> { |
| 135 | self.input.split('\n').map(|l| l.chars().count()).collect() |
| 136 | } |
| 137 | |
| 138 | /// Move cursor up one logical line. Returns false if already on first line. |
| 139 | pub fn move_cursor_up(&mut self) -> bool { |
no test coverage detected