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