fix arrows being out of sync.

This commit is contained in:
Bailey Ling 2013-08-18 05:34:26 +00:00
parent bcba04e20c
commit 38b8520a37
1 changed files with 4 additions and 9 deletions

View File

@ -31,10 +31,8 @@ endfunction
function! airline#highlighter#new()
let highlighter = {}
let highlighter._separators = {}
let highlighter._mode_init = {}
function! highlighter.load_theme()
let self._mode_init = {}
call self.highlight(['inactive'])
call self.highlight(['normal'])
endfunction
@ -54,14 +52,11 @@ function! airline#highlighter#new()
call airline#highlighter#exec(kvp[0].suffix, kvp[1])
endfor
" initialize separator colors for this mode if necessary
if !has_key(self._mode_init, mode)
let self._mode_init[mode] = 1
" TODO: optimize this
for sep in items(self._separators)
call <sid>exec_separator(dict, sep[1][0].suffix, sep[1][1].suffix, sep[1][2])
endfor
endif
endif
endfor
endfunction