Fix #373 - echo the cursor message after lint cycles or when leaving Insert mode
This commit is contained in:
parent
fab9e8f5ea
commit
0e50a7d278
3 changed files with 49 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue