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:
Spencer Michaels 2015-04-13 20:51:15 -07:00
parent 1dad424c2c
commit c48062ff4a

View File

@ -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,