Revert "use list of funcrecs, allowing window overrides to be dynamically added"

This reverts commit c0427e435d.
This commit is contained in:
Bailey Ling 2013-07-09 11:48:11 +00:00
parent c0427e435d
commit e2d78bdded
3 changed files with 7 additions and 7 deletions

View File

@ -68,9 +68,7 @@ function! s:apply_window_overrides()
let w:airline_section_c = bufname(winbufnr(winnr()))
endif
for FuncRef in g:airline_window_override_funcrefs
call FuncRef()
endfor
call airline#extensions#apply_window_overrides()
endfunction
function! airline#update_externals()

View File

@ -10,8 +10,12 @@ function! airline#extensions#load()
\ 'prog': 'airline#extensions#ctrlp#ctrlp_airline_status',
\ }
endif
endfunction
call add(g:airline_window_override_funcrefs, function('s:apply_window_overrides'))
function! s:empty_sections()
for section in s:sections
let w:airline_section_{section} = ''
endfor
endfunction
function! s:override_left_only(section1, section2)
@ -21,7 +25,7 @@ function! s:override_left_only(section1, section2)
let w:airline_left_only = 1
endfunction
function! s:apply_window_overrides()
function! airline#extensions#apply_window_overrides()
silent! unlet w:airline_left_only
for section in s:sections
silent! unlet w:airline_section_{section}

View File

@ -50,8 +50,6 @@ function! s:init()
endif
endfunction
let g:airline_window_override_funcrefs = []
augroup airline
au!
autocmd ColorScheme * call airline#highlight(['normal'])