Remove AddDefaultGroupToSortOrder check from startup.

The call to AddDefaultGroupToSortOrder in NERD_tree.vim is redundant
because it's also done every time sortChildren is called. And since the
check is done only once, there's no need for a function either.
sortChildren now just contains the needed if statement.
This commit is contained in:
Phil Runninger (mac)
2018-07-02 09:06:09 -04:00
parent 6ef3213cd0
commit 1e2b7ef98d
2 changed files with 3 additions and 12 deletions

View File

@@ -607,7 +607,9 @@ endfunction
" FUNCTION: TreeDirNode.sortChildren() {{{1
" Sort "self.children" by alphabetical order and directory priority.
function! s:TreeDirNode.sortChildren()
call AddDefaultGroupToSortOrder()
if count(g:NERDTreeSortOrder, '*') < 1
call add(g:NERDTreeSortOrder, '*')
endif
let CompareFunc = function("nerdtree#compareNodesBySortKey")
call sort(self.children, CompareFunc)
endfunction