Fix #373 - echo the cursor message after lint cycles or when leaving Insert mode

This commit is contained in:
w0rp 2017-03-02 23:36:31 +00:00
parent fab9e8f5ea
commit 0e50a7d278
3 changed files with 49 additions and 0 deletions

View file

@ -166,6 +166,10 @@ function! s:ALEInitAuGroups() abort
autocmd!
if g:ale_enabled && g:ale_echo_cursor
autocmd CursorMoved,CursorHold * call ale#cursor#EchoCursorWarningWithDelay()
" Look for a warning to echo as soon as we leave Insert mode.
" The script's position variable used when moving the cursor will
" not be changed here.
autocmd InsertLeave * call ale#cursor#EchoCursorWarning()
endif
augroup END