Fix #371 Allow ALE to be disabled in different buffers

This commit is contained in:
w0rp
2017-05-26 16:20:17 +01:00
parent c77cf0e518
commit 9460e58c3b
4 changed files with 122 additions and 0 deletions

View File

@@ -29,6 +29,11 @@ function! ale#Queue(delay, ...) abort
throw "linting_flag must be either '' or 'lint_file'"
endif
" Stop here if ALE is disabled.
if !ale#Var(bufnr(''), 'enabled')
return
endif
if ale#ShouldDoNothing()
return
endif