Fix :Vopen tab complete of a/b on Windows

Closes #70.
This commit is contained in:
Tim Pope
2012-07-30 11:37:01 -04:00
parent 2f9fd6de08
commit 5e3fdd3a8a
+1 -1
View File
@@ -224,7 +224,7 @@ function! s:Findcomplete(A,L,P) " {{{1
else
let request = a:A
endif
let pattern = substitute(request,'\'.sep,'*'.sep,'g').'*'
let pattern = substitute(request,'/\|\'.sep,'*'.sep,'g').'*'
let found = {}
for path in pathogen#split(&runtimepath)
let path = expand(path, ':p')