mirror of
https://github.com/preservim/nerdtree.git
synced 2025-02-07 22:27:14 +08:00
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)
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue
Block a user