(self, text, is_init=False)
| 297 | self.all_completions.add(type_name) |
| 298 | |
| 299 | def extend_query_history(self, text, is_init=False): |
| 300 | if is_init: |
| 301 | # During completer initialization, only load keyword preferences, |
| 302 | # not names |
| 303 | self.prioritizer.update_keywords(text) |
| 304 | else: |
| 305 | self.prioritizer.update(text) |
| 306 | |
| 307 | def set_search_path(self, search_path): |
| 308 | self.search_path = self.escaped_names(search_path) |