1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-12 09:35:40 +08:00

Fix debug command ()

* Fix debug command

* Update checkers layer
This commit is contained in:
Wang Shidong 2018-12-27 09:31:43 -06:00 committed by GitHub
parent 119418756b
commit 8514648b6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -105,10 +105,10 @@ function! SpaceVim#layers#checkers#config() abort
" when switch to Insert mode, stop timer and clear the signature
if exists('##CmdLineEnter')
autocmd InsertEnter,WinLeave,CmdLineEnter *
autocmd InsertEnter,WinLeave *
\ call <SID>neomake_signatures_clear()
autocmd CmdLineEnter *
\ call <SID>neomake_signatures_clear() | redraw
\ call <SID>neomake_signatures_clear()
else
autocmd InsertEnter,WinLeave * call <SID>neomake_signatures_clear()
endif