Moves the cursor to the end of the line.
(&mut self)
| 233 | |
| 234 | /// Moves the cursor to the end of the line. |
| 235 | fn do_end(&mut self) -> io::Result<DispatchResult> { |
| 236 | self.do_move_to(self.line.len()) |
| 237 | } |
| 238 | |
| 239 | /// Treats EOF as delete while text exists, or reports end-of-input otherwise. |
| 240 | fn do_eof_or_delete(&mut self) -> io::Result<DispatchResult> { |
no test coverage detected