(self, expr: typing.Any)
| 66 | debug(self.vim, expr) |
| 67 | |
| 68 | def print_error(self, expr: typing.Any) -> None: |
| 69 | if not self.is_silent: |
| 70 | error_vim(self.vim, expr) |
| 71 | |
| 72 | @abstractmethod |
| 73 | def gather_candidates(self, context: UserContext) -> Candidates: |
nothing calls this directly
no test coverage detected