Yield strings from newest to oldest.
(self)
| 182 | """No-op: Persistent history data is stored in cmd_app.history.""" |
| 183 | |
| 184 | def load_history_strings(self) -> Iterable[str]: |
| 185 | """Yield strings from newest to oldest.""" |
| 186 | yield from self._loaded_strings |
| 187 | |
| 188 | def clear(self) -> None: |
| 189 | """Clear the UI history navigation data.""" |
no outgoing calls