diff --git a/IPython/core/completer.py b/IPython/core/completer.py index b5c54e4..c493fa3 100644 --- a/IPython/core/completer.py +++ b/IPython/core/completer.py @@ -1143,18 +1143,18 @@ class IPCompleter(Completer): if self.use_jedi: return [ *self.custom_matchers, + self.dict_key_matches, self.file_matches, self.magic_matches, - self.dict_key_matches, ] else: return [ *self.custom_matchers, + self.dict_key_matches, self.python_matches, self.file_matches, self.magic_matches, self.python_func_kw_matches, - self.dict_key_matches, ] def all_completions(self, text) -> List[str]: