(&mut self, index: usize)
| 634 | } |
| 635 | |
| 636 | pub fn load_stash(&mut self, index: usize) -> bool { |
| 637 | let Some(entry) = self.stash.get(index) else { |
| 638 | return false; |
| 639 | }; |
| 640 | self.set_input(entry.input.clone()); |
| 641 | true |
| 642 | } |
| 643 | |
| 644 | fn history_previous(&mut self) { |
| 645 | if self.history.is_empty() { |
no test coverage detected