Cf. #539: Less aggressive redraw

This commit is contained in:
Karl Yngve Lervåg 2016-09-08 22:23:31 +02:00
parent ce11d06130
commit a8c6d43f71

View File

@ -112,7 +112,7 @@ function! vimtex#latexmk#callback(status) " {{{1
endif endif
call vimtex#latexmk#errors_open(0) call vimtex#latexmk#errors_open(0)
redraw! redraw
call vimtex#echo#status(['latexmk compile: ', call vimtex#echo#status(['latexmk compile: ',
\ a:status ? ['VimtexSuccess', 'success'] : ['VimtexWarning', 'fail']]) \ a:status ? ['VimtexSuccess', 'success'] : ['VimtexWarning', 'fail']])
@ -165,7 +165,7 @@ function! vimtex#latexmk#lacheck() " {{{1
silent lmake % silent lmake %
lwindow lwindow
silent redraw! silent redraw
wincmd p wincmd p
compiler latexmk compiler latexmk
@ -381,7 +381,7 @@ function! vimtex#latexmk#errors_open(force) " {{{1
if g:vimtex_quickfix_mode == 2 if g:vimtex_quickfix_mode == 2
wincmd p wincmd p
endif endif
redraw! redraw
endif endif
endfunction endfunction