Avoid doautocmd warning
This commit is contained in:
parent
b1d8de600f
commit
432dee6982
@ -207,7 +207,9 @@ function! vimtex#latexmk#compile() " {{{1
|
|||||||
call s:latexmk_set_pid()
|
call s:latexmk_set_pid()
|
||||||
call vimtex#echo#status(['latexmk compile: ',
|
call vimtex#echo#status(['latexmk compile: ',
|
||||||
\ ['VimtexSuccess', 'started continuous mode']])
|
\ ['VimtexSuccess', 'started continuous mode']])
|
||||||
doautocmd User VimtexEventCompileStarted
|
if exists('#User#VimtexEventCompileStarted')
|
||||||
|
doautocmd User VimtexEventCompileStarted
|
||||||
|
endif
|
||||||
else
|
else
|
||||||
if get(l:exe, 'bg', 1)
|
if get(l:exe, 'bg', 1)
|
||||||
call vimtex#echo#status(['latexmk compile: ',
|
call vimtex#echo#status(['latexmk compile: ',
|
||||||
@ -523,7 +525,9 @@ function! vimtex#latexmk#stop() " {{{1
|
|||||||
call s:latexmk_kill(b:vimtex)
|
call s:latexmk_kill(b:vimtex)
|
||||||
call vimtex#echo#status(['latexmk compile: ',
|
call vimtex#echo#status(['latexmk compile: ',
|
||||||
\ ['VimtexSuccess', 'stopped (' . b:vimtex.base . ')']])
|
\ ['VimtexSuccess', 'stopped (' . b:vimtex.base . ')']])
|
||||||
doautocmd User VimtexEventCompileStopped
|
if exists('#User#VimtexEventCompileStopped')
|
||||||
|
doautocmd User VimtexEventCompileStopped
|
||||||
|
endif
|
||||||
else
|
else
|
||||||
call vimtex#echo#status(['latexmk compile: ',
|
call vimtex#echo#status(['latexmk compile: ',
|
||||||
\ ['VimtexWarning', 'no process to stop (' . b:vimtex.base . ')']])
|
\ ['VimtexWarning', 'no process to stop (' . b:vimtex.base . ')']])
|
||||||
|
Loading…
Reference in New Issue
Block a user