Added comment to clarify which part of the path is the 'drive' for windows network shares

This commit is contained in:
Dave Aitken 2012-01-06 19:36:26 +00:00
parent bc745b6e99
commit ba3d43138a

View File

@ -2110,6 +2110,7 @@ endfunction
function! s:Path.extractDriveLetter(fullpath)
if s:running_windows
if a:fullpath =~ '^\(\\\\\|\/\/\)'
"For network shares, the 'drive' consists of the first two parts of the path, i.e. \\boxname\share
let self.drive = substitute(a:fullpath, '^\(\(\\\\\|\/\/\)[^\\\/]*\(\\\|\/\)[^\\\/]*\).*', '\1', '')
let self.drive = substitute(self.drive, '/', '\', "g")
else