Merge pull request #453 from WoLpH/patch-1
Fixed incompatibility with older Vim versions
This commit is contained in:
commit
96c07746b4
@ -2,8 +2,11 @@
|
|||||||
"once here
|
"once here
|
||||||
let s:NERDTreeSortStarIndex = index(g:NERDTreeSortOrder, '*')
|
let s:NERDTreeSortStarIndex = index(g:NERDTreeSortOrder, '*')
|
||||||
" used in formating sortKey, e.g. '%04d'
|
" used in formating sortKey, e.g. '%04d'
|
||||||
let s:sortKeyFormat = "%0" . float2nr(ceil(log10(len(g:NERDTreeSortOrder)))) . "d"
|
if exists("log10")
|
||||||
|
let s:sortKeyFormat = "%0" . float2nr(ceil(log10(len(g:NERDTreeSortOrder)))) . "d"
|
||||||
|
else
|
||||||
|
let s:sortKeyFormat = "%04d"
|
||||||
|
endif
|
||||||
|
|
||||||
"CLASS: Path
|
"CLASS: Path
|
||||||
"============================================================
|
"============================================================
|
||||||
|
Loading…
Reference in New Issue
Block a user