use a script lvl variable for NERDTreeSortStarIndex

This commit is contained in:
Martin Grenfell 2008-06-08 18:30:31 +12:00
parent 82c1fece9f
commit 6e24eed04a

View File

@ -59,7 +59,7 @@ endif
"we need to use this number many times for sorting... so we calculate it only
"once here
let g:NERDTreeSortStarIndex = index(g:NERDTreeSortOrder, '*')
let s:NERDTreeSortStarIndex = index(g:NERDTreeSortOrder, '*')
call s:InitVariable("g:NERDTreeSplitVertical", 1)
call s:InitVariable("g:NERDTreeWinPos", 1)
@ -1035,7 +1035,7 @@ function! s:oPath.GetSortOrderIndex() dict
endif
let i = i + 1
endwhile
return g:NERDTreeSortStarIndex
return s:NERDTreeSortStarIndex
endfunction
"FUNCTION: oPath.Ignore() {{{3