##// END OF EJS Templates
Fix bug with expansions cointaining '~' in them....
Fernando Perez -
Show More
@@ -708,9 +708,6 class IPCompleter(Completer):
708 708 self.full_lbuf = line_buffer
709 709 self.lbuf = self.full_lbuf[:cursor_pos]
710 710
711 if text.startswith('~'):
712 text = os.path.expanduser(text)
713
714 711 #io.rprint('COMP2 %r %r %r' % (text, line_buffer, cursor_pos)) # dbg
715 712
716 713 # Start with a clean slate of completions
General Comments 0
You need to be logged in to leave comments. Login now