(self, text, cursor_positition)
| 1302 | self.completer = new_completer |
| 1303 | |
| 1304 | def get_completions(self, text, cursor_positition): |
| 1305 | with self._completer_lock: |
| 1306 | return self.completer.get_completions(Document(text=text, cursor_position=cursor_positition), None) |
| 1307 | |
| 1308 | def get_prompt(self, string): |
| 1309 | # should be before replacing \\d |
no outgoing calls