##// END OF EJS Templates
alias completer works in indented lines now
vivainio -
Show More
@@ -450,7 +450,7 b' class IPCompleter(Completer):'
450 450
451 451 # if we are not in the first 'item', alias matching
452 452 # doesn't make sense
453 if ' ' in self.lbuf:
453 if ' ' in self.lbuf.lstrip():
454 454 return []
455 455 text = os.path.expanduser(text)
456 456 aliases = self.alias_table.keys()
General Comments 0
You need to be logged in to leave comments. Login now