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