Moves the cursor to the start of the line.
(&mut self)
| 247 | |
| 248 | /// Moves the cursor to the start of the line. |
| 249 | fn do_home(&mut self) -> io::Result<DispatchResult> { |
| 250 | self.do_move_to(0) |
| 251 | } |
| 252 | |
| 253 | /// Ignores a key press that has no editing effect. |
| 254 | fn do_ignore(&mut self) -> io::Result<DispatchResult> { |