diff options
Diffstat (limited to 'autoload/ale.vim')
-rw-r--r-- | autoload/ale.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/autoload/ale.vim b/autoload/ale.vim index 830a281d..3c15f5d5 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 |