##// END OF EJS Templates
Skip our own Python matches when using Jedi
Thomas Kluyver -
Show More
@@ -1102,6 +1102,13 b' class IPCompleter(Completer):'
1102 #= re.compile(r'[\s|\[]*(\w+)(?:\s*=?\s*.*)')
1102 #= re.compile(r'[\s|\[]*(\w+)(?:\s*=?\s*.*)')
1103
1103
1104 # All active matcher routines for completion
1104 # All active matcher routines for completion
1105 if self.use_jedi:
1106 self.matchers = [
1107 self.file_matches,
1108 self.magic_matches,
1109 self.dict_key_matches,
1110 ]
1111 else:
1105 self.matchers = [
1112 self.matchers = [
1106 self.python_matches,
1113 self.python_matches,
1107 self.file_matches,
1114 self.file_matches,
General Comments 0
You need to be logged in to leave comments. Login now