mirror of
https://github.com/vim-airline/vim-airline.git
synced 2025-02-17 06:42:45 +08:00
Merge pull request #1785 from smancill/conditional-vimtex-loading
Load vimtex only when the extension is enabled
This commit is contained in:
commit
d342c3cb1e
|
@ -334,10 +334,12 @@ function! airline#extensions#load()
|
|||
call add(loaded_ext, 'obsession')
|
||||
endif
|
||||
|
||||
runtime autoload/vimtex.vim
|
||||
if (get(g:, 'airline#extensions#vimtex#enabled', 1)) && exists('*vimtex#init')
|
||||
call airline#extensions#vimtex#init(s:ext)
|
||||
call add(loaded_ext, 'vimtex')
|
||||
if get(g:, 'airline#extensions#vimtex#enabled', 1)
|
||||
runtime autoload/vimtex.vim
|
||||
if exists('*vimtex#init')
|
||||
call airline#extensions#vimtex#init(s:ext)
|
||||
call add(loaded_ext, 'vimtex')
|
||||
endif
|
||||
endif
|
||||
|
||||
if (get(g:, 'airline#extensions#cursormode#enabled', 0))
|
||||
|
|
Loading…
Reference in New Issue
Block a user