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:
Bjorn Neergaard
2016-10-09 20:27:51 -05:00
committed by Christian Brabandt
parent 45e5c907be
commit 06351e86df
3 changed files with 43 additions and 3 deletions

View File

@@ -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