diff --git a/autoload/ale.vim b/autoload/ale.vim index 830a281..3c15f5d 100644 --- a/autoload/ale.vim +++ b/autoload/ale.vim @@ -11,6 +11,7 @@ function! ale#ShouldDoNothing() abort " Do nothing for blacklisted files " OR if ALE is running in the sandbox return index(g:ale_filetype_blacklist, &filetype) >= 0 + \ || (exists('*getcmdwintype') && !empty(getcmdwintype())) \ || ale#util#InSandbox() endfunction