(&self)
| 343 | } |
| 344 | |
| 345 | pub fn get_history_path(&self) -> PathBuf { |
| 346 | self.history_path.clone() |
| 347 | } |
| 348 | |
| 349 | /// Finds the best hint for the current input using rustyline's history |
| 350 | fn find_hint(&self, line: &str, ctx: &Context<'_>) -> Option<String> { |
no test coverage detected