Skip to content

Commit 4a94e1d

Browse files
committed
fix: avoid extra quotes on windows
This reverses the fix from #1256. refer: #2139, #1256
1 parent 058f139 commit 4a94e1d

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

autoload/vimtex/process.vim

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,7 @@ if has('win32')
167167
let l:cmd = 'start /b ' . cmd
168168
endif
169169

170-
if self.silent && self.output ==# 'null'
171-
let self.prepared_cmd = '"' . l:cmd . '"'
172-
else
173-
let self.prepared_cmd = l:cmd
174-
endif
170+
let self.prepared_cmd = l:cmd
175171
endfunction
176172

177173
" }}}1

0 commit comments

Comments
 (0)