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 9defbd82..6941a9a5 100644 --- a/autoload/ale.vim +++ b/autoload/ale.vim @@ -48,6 +48,7 @@ function! ale#ShouldDoNothing(buffer) abort \ || ale#util#InSandbox() \ || !ale#Var(a:buffer, 'enabled') \ || ale#FileTooLarge() + \ || getbufvar(a:buffer, '&l:statusline') =~# 'CtrlPMode.*funky' endfunction " (delay, [linting_flag, buffer_number]) |