check initialized so autoloaded plugins happen first
This commit is contained in:
parent
f5afe4bcac
commit
91904d942e
@ -129,7 +129,7 @@ function! airline#extensions#load()
|
|||||||
call airline#extensions#tagbar#init(s:ext)
|
call airline#extensions#tagbar#init(s:ext)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if g:airline_enable_csv && exists(':Table')
|
if g:airline_enable_csv && (get(g:, 'loaded_csv', 0) || exists(':Table'))
|
||||||
call airline#extensions#csv#init(s:ext)
|
call airline#extensions#csv#init(s:ext)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -88,9 +88,10 @@ function! s:airline_toggle()
|
|||||||
autocmd WinEnter,BufWinEnter,FileType,BufUnload,ShellCmdPost *
|
autocmd WinEnter,BufWinEnter,FileType,BufUnload,ShellCmdPost *
|
||||||
\ call <sid>on_window_changed()
|
\ call <sid>on_window_changed()
|
||||||
augroup END
|
augroup END
|
||||||
" update statusline now
|
if s:airline_initialized
|
||||||
call <sid>on_window_changed()
|
call <sid>on_window_changed()
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:get_airline_themes(a, l, p)
|
function! s:get_airline_themes(a, l, p)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user