From 0b8c2525b1719766275f6513900f8b08a6fabacd Mon Sep 17 00:00:00 2001 From: w0rp Date: Tue, 13 Sep 2016 22:24:55 +0100 Subject: [PATCH] Make sure all files are loaded, not just the first. --- plugin/ale/zmain.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/ale/zmain.vim b/plugin/ale/zmain.vim index abfc4afc..7a8ceb13 100644 --- a/plugin/ale/zmain.vim +++ b/plugin/ale/zmain.vim @@ -223,7 +223,7 @@ function! ALELint(delay) endfunction " Load all of the linters for each filetype. -runtime ale_linters/*/*.vim +runtime! ale_linters/*/*.vim if !has('nvim') && !(has('timers') && has('job') && has('channel')) echoerr 'ALE requires NeoVim or Vim 8 with +timers +job +channel'