Skip to content

Commit

Permalink
merge: avoid timeout in latexmk pvc mode
Browse files Browse the repository at this point in the history
refer: #2804
  • Loading branch information
lervag committed Oct 11, 2023
2 parents 03c8344 + 45b0b61 commit cbb2064
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autoload/vimtex/compiler/latexmk.vim
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ function! s:compiler.__build_cmd() abort dict " {{{1
endif

if self.continuous
let l:cmd .= ' -pvc -view=none'
let l:cmd .= ' -pvc -pvctimeout- -view=none'

if self.callback
for [l:opt, l:val] in [
Expand All @@ -164,7 +164,7 @@ function! s:compiler.__pprint_append() abort dict " {{{1
if !empty(self.aux_dir)
call add(l:list, ['aux_dir', self.aux_dir])
endif

call add(l:list, ['callback', self.callback])
call add(l:list, ['continuous', self.continuous])
call add(l:list, ['executable', self.executable])
Expand Down

0 comments on commit cbb2064

Please sign in to comment.