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())) let w:airline_section_c = bufname(winbufnr(winnr()))
endif endif
for FuncRef in g:airline_window_override_funcrefs call airline#extensions#apply_window_overrides()
call FuncRef()
endfor
endfunction endfunction
function! airline#update_externals() function! airline#update_externals()

View File

@ -10,8 +10,12 @@ function! airline#extensions#load()
\ 'prog': 'airline#extensions#ctrlp#ctrlp_airline_status', \ 'prog': 'airline#extensions#ctrlp#ctrlp_airline_status',
\ } \ }
endif 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 endfunction
function! s:override_left_only(section1, section2) function! s:override_left_only(section1, section2)
@ -21,7 +25,7 @@ function! s:override_left_only(section1, section2)
let w:airline_left_only = 1 let w:airline_left_only = 1
endfunction endfunction
function! s:apply_window_overrides() function! airline#extensions#apply_window_overrides()
silent! unlet w:airline_left_only silent! unlet w:airline_left_only
for section in s:sections for section in s:sections
silent! unlet w:airline_section_{section} silent! unlet w:airline_section_{section}

View File

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