#446 Do not run ALE if inside of a command window
This commit is contained in:
parent
1f7679e619
commit
80a16668c9
1 changed files with 1 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Reference in a new issue