Show More
@@ -1191,18 +1191,18 b' class IPCompleter(Completer):' | |||
|
1191 | 1191 | if self.use_jedi: |
|
1192 | 1192 | return [ |
|
1193 | 1193 | *self.custom_matchers, |
|
1194 | self.dict_key_matches, | |
|
1194 | 1195 | self.file_matches, |
|
1195 | 1196 | self.magic_matches, |
|
1196 | self.dict_key_matches, | |
|
1197 | 1197 | ] |
|
1198 | 1198 | else: |
|
1199 | 1199 | return [ |
|
1200 | 1200 | *self.custom_matchers, |
|
1201 | self.dict_key_matches, | |
|
1201 | 1202 | self.python_matches, |
|
1202 | 1203 | self.file_matches, |
|
1203 | 1204 | self.magic_matches, |
|
1204 | 1205 | self.python_func_kw_matches, |
|
1205 | self.dict_key_matches, | |
|
1206 | 1206 | ] |
|
1207 | 1207 | |
|
1208 | 1208 | def all_completions(self, text:str) -> List[str]: |
General Comments 0
You need to be logged in to leave comments.
Login now