(self, word)
| 452 | return matches |
| 453 | |
| 454 | def case(self, word): |
| 455 | return self.casing.get(word, word) |
| 456 | |
| 457 | def get_completions(self, document, complete_event, smart_completion=None): |
| 458 | word_before_cursor = document.get_word_before_cursor(WORD=True) |
no outgoing calls
no test coverage detected