| 359 | void ShowHistory() const { history.Show(out); } |
| 360 | |
| 361 | void ExecFromHistory(unsigned index) |
| 362 | { |
| 363 | history.ForgetLatest(); |
| 364 | const auto cmd = history.At(index); |
| 365 | Feed(cmd); |
| 366 | } |
| 367 | |
| 368 | std::string PreviousCmd(const std::string& line) |
| 369 | { |
nothing calls this directly
no test coverage detected