Added comment to clarify which part of the path is the 'drive' for windows network shares
This commit is contained in:
parent
bc745b6e99
commit
ba3d43138a
@ -2110,6 +2110,7 @@ endfunction
|
|||||||
function! s:Path.extractDriveLetter(fullpath)
|
function! s:Path.extractDriveLetter(fullpath)
|
||||||
if s:running_windows
|
if s:running_windows
|
||||||
if a:fullpath =~ '^\(\\\\\|\/\/\)'
|
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(a:fullpath, '^\(\(\\\\\|\/\/\)[^\\\/]*\(\\\|\/\)[^\\\/]*\).*', '\1', '')
|
||||||
let self.drive = substitute(self.drive, '/', '\', "g")
|
let self.drive = substitute(self.drive, '/', '\', "g")
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user