Updated the comment
This commit is contained in:
parent
80e184df56
commit
10261d60a0
@ -248,7 +248,6 @@ function! s:TreeDirNode._initChildren(silent)
|
|||||||
"../ for path with strange chars (eg $)
|
"../ for path with strange chars (eg $)
|
||||||
" if i !~# '\/\.\.\/\?$' && i !~# '\/\.\/\?$'
|
" if i !~# '\/\.\.\/\?$' && i !~# '\/\.\/\?$'
|
||||||
"
|
"
|
||||||
" 20150511
|
|
||||||
" Regular expression is too expensive. Use simply string comparison
|
" Regular expression is too expensive. Use simply string comparison
|
||||||
" instead
|
" instead
|
||||||
if i[len(i)-3:2] != ".." && i[len(i)-2:2] != ".." &&
|
if i[len(i)-3:2] != ".." && i[len(i)-2:2] != ".." &&
|
||||||
@ -412,7 +411,6 @@ function! s:TreeDirNode.refresh()
|
|||||||
"../ for path with strange chars (eg $)
|
"../ for path with strange chars (eg $)
|
||||||
"if i !~# '\/\.\.\/\?$' && i !~# '\/\.\/\?$'
|
"if i !~# '\/\.\.\/\?$' && i !~# '\/\.\/\?$'
|
||||||
|
|
||||||
" 20150511
|
|
||||||
" Regular expression is too expensive. Use simply string comparison
|
" Regular expression is too expensive. Use simply string comparison
|
||||||
" instead
|
" instead
|
||||||
if i[len(i)-3:2] != ".." && i[len(i)-2:2] != ".." &&
|
if i[len(i)-3:2] != ".." && i[len(i)-2:2] != ".." &&
|
||||||
|
Loading…
Reference in New Issue
Block a user