File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -549,7 +549,7 @@ function! s:Path.isUnder(parent)
549
549
return 0
550
550
endif
551
551
for i in range (0 , l: that_count- 1 )
552
- if self .pathSegments[i ] !=# a: parent .pathSegments[i ]
552
+ if ! nerdtree#pathEquals ( self .pathSegments[i ], a: parent .pathSegments[i ])
553
553
return 0
554
554
endif
555
555
endfor
Original file line number Diff line number Diff line change @@ -121,8 +121,14 @@ function! s:TreeDirNode.findNode(path)
121
121
if a: path .equals (self .path )
122
122
return self
123
123
endif
124
- if stridx (a: path .str (), self .path .str (), 0 ) == # -1
125
- return {}
124
+ if nerdtree#caseSensitiveFS ()
125
+ if stridx (a: path .str (), self .path .str (), 0 ) == # -1
126
+ return {}
127
+ endif
128
+ else
129
+ if stridx (tolower (a: path .str ()), tolower (self .path .str ()), 0 ) == # -1
130
+ return {}
131
+ endif
126
132
endif
127
133
128
134
if self .path .isDirectory
You can’t perform that action at this time.
0 commit comments