diff --git a/autoload/ale/engine.vim b/autoload/ale/engine.vim index 1d0ad3d..e29f3fd 100644 --- a/autoload/ale/engine.vim +++ b/autoload/ale/engine.vim @@ -113,6 +113,9 @@ function! s:HandleExit(job) abort call ale#statusline#Update(l:buffer, g:ale_buffer_loclist_map[l:buffer]) endif + " Call user autocommands. This allows users to hook into ALE's lint cycle. + doautocmd User ALELint + " Mark line 200, column 17 with a squiggly line or something " matchadd('ALEError', '\%200l\%17v') endfunction