Add a space after the '-c' flag in latexmk#clean.
Previously the lack of a space after '-c' would cause VimtexClean to silently fail when not performing a full clean.
This commit is contained in:
parent
1dad424c2c
commit
c48062ff4a
@ -108,7 +108,7 @@ function! vimtex#latexmk#clean(full) " {{{1
|
||||
let cmd = 'cd ' . shellescape(data.root) . '; '
|
||||
endif
|
||||
let cmd .= 'latexmk -outdir=' . g:vimtex_latexmk_build_dir
|
||||
let cmd .= a:full ? ' -C ' : ' -c'
|
||||
let cmd .= a:full ? ' -C ' : ' -c '
|
||||
let cmd .= vimtex#util#fnameescape(data.base)
|
||||
let exe = {
|
||||
\ 'cmd' : cmd,
|
||||
|
Loading…
x
Reference in New Issue
Block a user