##// END OF EJS Templates
cd completer now converts /'s to \'s
vivainio -
Show More
@@ -201,7 +201,8 b' def cd_completer(self, event):'
201 if relpath.startswith('~'):
201 if relpath.startswith('~'):
202 relpath = os.path.expanduser(relpath).replace('\\','/')
202 relpath = os.path.expanduser(relpath).replace('\\','/')
203 found = []
203 found = []
204 for d in [f + '/' for f in glob.glob(relpath+'*') if os.path.isdir(f)]:
204 for d in [f.replace('\\','/') + '/' for f in glob.glob(relpath+'*')
205 if os.path.isdir(f)]:
205 if ' ' in d:
206 if ' ' in d:
206 # we don't want to deal with any of that, complex code
207 # we don't want to deal with any of that, complex code
207 # for this is elsewhere
208 # for this is elsewhere
General Comments 0
You need to be logged in to leave comments. Login now