mirror of
https://github.com/preservim/nerdtree.git
synced 2025-11-08 11:23:48 -05:00
fix: Make NERDTreeFind to handle directory case sensitivity (#1387)
Co-authored-by: Dan Gibson <danial.gibson@spin.net.au>
This commit is contained in:
@@ -549,7 +549,7 @@ function! s:Path.isUnder(parent)
|
|||||||
return 0
|
return 0
|
||||||
endif
|
endif
|
||||||
for i in range(0, l:that_count-1)
|
for i in range(0, l:that_count-1)
|
||||||
if self.pathSegments[i] !=# a:parent.pathSegments[i]
|
if !nerdtree#pathEquals(self.pathSegments[i], a:parent.pathSegments[i])
|
||||||
return 0
|
return 0
|
||||||
endif
|
endif
|
||||||
endfor
|
endfor
|
||||||
|
|||||||
@@ -121,9 +121,15 @@ function! s:TreeDirNode.findNode(path)
|
|||||||
if a:path.equals(self.path)
|
if a:path.equals(self.path)
|
||||||
return self
|
return self
|
||||||
endif
|
endif
|
||||||
|
if nerdtree#caseSensitiveFS()
|
||||||
if stridx(a:path.str(), self.path.str(), 0) ==# -1
|
if stridx(a:path.str(), self.path.str(), 0) ==# -1
|
||||||
return {}
|
return {}
|
||||||
endif
|
endif
|
||||||
|
else
|
||||||
|
if stridx(tolower(a:path.str()), tolower(self.path.str()), 0) ==# -1
|
||||||
|
return {}
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
if self.path.isDirectory
|
if self.path.isDirectory
|
||||||
for i in self.children
|
for i in self.children
|
||||||
|
|||||||
Reference in New Issue
Block a user