##// END OF EJS Templates
escape parens on filename completer (linux only)
Ville M. Vainio -
Show More
@@ -314,7 +314,10 b' class IPCompleter(Completer):'
314 314 # don't want to treat as delimiters in filename matching
315 315 # when escaped with backslash
316 316
317 protectables = ' '
317 if sys.platform == 'win32':
318 protectables = ' '
319 else:
320 protectables = ' ()'
318 321
319 322 if text.startswith('!'):
320 323 text = text[1:]
General Comments 0
You need to be logged in to leave comments. Login now