mirror of
https://github.com/vim-airline/vim-airline.git
synced 2025-12-10 05:51:49 +08:00
Add support for ALE, the Async Linting Engine
Ale is a plugin that lints text in the background, as you type! It is new, but under [rapid development](https://github.com/w0rp/ale).
This commit is contained in:
committed by
Christian Brabandt
parent
45e5c907be
commit
06351e86df
@@ -212,6 +212,10 @@ function! airline#extensions#load()
|
||||
call airline#extensions#syntastic#init(s:ext)
|
||||
endif
|
||||
|
||||
if (get(g:, 'airline#extensions#ale#enabled', 1) && exists('g:loaded_ale'))
|
||||
call airline#extensions#ale#init(s:ext)
|
||||
endif
|
||||
|
||||
if get(g:, 'airline#extensions#whitespace#enabled', 1)
|
||||
call airline#extensions#whitespace#init(s:ext)
|
||||
endif
|
||||
|
||||
Reference in New Issue
Block a user