File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -1000,6 +1000,8 @@ The latest dev versions are on github
1000
1000
Next release:
1001
1001
- fix a bug where secondary nerd trees (netrw hijacked trees) and
1002
1002
NERDTreeQuitOnOpen didnt play nicely, thanks to Curtis Harvey.
1003
+ - fix a bug where the script ignored directories whose name ended in a dot,
1004
+ thanks to Aggelos Orfanakos for the patch.
1003
1005
1004
1006
3.1.1
1005
1007
- fix a bug where a non-listed no-name buffer was getting created every
Original file line number Diff line number Diff line change @@ -1186,7 +1186,7 @@ function! s:TreeDirNode._initChildren(silent)
1186
1186
" filter out the .. and . directories
1187
1187
" Note: we must match .. AND ../ cos sometimes the globpath returns
1188
1188
" ../ for path with strange chars (eg $)
1189
- if i !~ ' \.\.\/\?$' && i !~ ' \.\/\?$'
1189
+ if i !~ ' ^ \.\.\/\?$' && i !~ ' ^ \.\/\?$'
1190
1190
1191
1191
" put the next file in a new node and attach it
1192
1192
try
You can’t perform that action at this time.
0 commit comments