(self, _, word_before_cursor)
| 834 | return self.find_matches(word_before_cursor, keywords, mode="strict", meta="keyword") |
| 835 | |
| 836 | def get_path_matches(self, _, word_before_cursor): |
| 837 | completer = PathCompleter(expanduser=True) |
| 838 | document = Document(text=word_before_cursor, cursor_position=len(word_before_cursor)) |
| 839 | for c in completer.get_completions(document, None): |
| 840 | yield Match(completion=c, priority=(0,)) |
| 841 | |
| 842 | def get_special_matches(self, _, word_before_cursor): |
| 843 | if not self.pgspecial: |
nothing calls this directly
no test coverage detected