Show More
@@ -433,7 +433,9 b' class IPCompleter(Completer):' | |||||
433 | else: |
|
433 | else: | |
434 | matches = self.global_matches(text) |
|
434 | matches = self.global_matches(text) | |
435 | # this is so completion finds magics when automagic is on: |
|
435 | # this is so completion finds magics when automagic is on: | |
436 |
if matches == [] and |
|
436 | if (matches == [] and | |
|
437 | not text.startswith(os.sep) and | |||
|
438 | not ' ' in self.lbuf): | |||
437 | matches = self.attr_matches(self.magic_prefix+text) |
|
439 | matches = self.attr_matches(self.magic_prefix+text) | |
438 | return matches |
|
440 | return matches | |
439 |
|
441 |
General Comments 0
You need to be logged in to leave comments.
Login now