mirror of
https://github.com/preservim/nerdtree.git
synced 2024-11-22 10:34:59 +08:00
fixed root path error for windows (#935)
* fixed root path error for windows * simplify condition check
This commit is contained in:
parent
72c3656799
commit
8cc154d4b0
|
@ -15,7 +15,7 @@ function! s:Path.AbsolutePathFor(pathStr)
|
|||
let l:prependWorkingDir = 0
|
||||
|
||||
if nerdtree#runningWindows()
|
||||
let l:prependWorkingDir = a:pathStr !~# '^.:\(\\\|\/\)' && a:pathStr !~# '^\(\\\\\|\/\/\)'
|
||||
let l:prependWorkingDir = a:pathStr !~# '^.:\(\\\|\/\)\?' && a:pathStr !~# '^\(\\\\\|\/\/\)'
|
||||
else
|
||||
let l:prependWorkingDir = a:pathStr !~# '^/'
|
||||
endif
|
||||
|
@ -23,7 +23,13 @@ function! s:Path.AbsolutePathFor(pathStr)
|
|||
let l:result = a:pathStr
|
||||
|
||||
if l:prependWorkingDir
|
||||
let l:result = getcwd() . s:Path.Slash() . a:pathStr
|
||||
let l:result = getcwd()
|
||||
|
||||
if l:result[-1:] == s:Path.Slash()
|
||||
let l:result = l:result . a:pathStr
|
||||
else
|
||||
let l:result = l:result . s:Path.Slash() . a:pathStr
|
||||
endif
|
||||
endif
|
||||
|
||||
return l:result
|
||||
|
|
Loading…
Reference in New Issue
Block a user