(self, _, word_before_cursor)
| 840 | yield Match(completion=c, priority=(0,)) |
| 841 | |
| 842 | def get_special_matches(self, _, word_before_cursor): |
| 843 | if not self.pgspecial: |
| 844 | return [] |
| 845 | |
| 846 | commands = self.pgspecial.commands |
| 847 | cmds = commands.keys() |
| 848 | cmds = [Candidate(cmd, 0, commands[cmd].description) for cmd in cmds] |
| 849 | return self.find_matches(word_before_cursor, cmds, mode="strict") |
| 850 | |
| 851 | def get_datatype_matches(self, suggestion, word_before_cursor): |
| 852 | # suggest custom datatypes |
nothing calls this directly
no test coverage detected