From 44e605dbf25275a18b2661b02697782dbd00d489 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=20Yngve=20Lerv=C3=A5g?= Date: Thu, 28 Jul 2016 22:36:54 +0200 Subject: [PATCH] Minor clean up --- autoload/vimtex/view.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/vimtex/view.vim b/autoload/vimtex/view.vim index 15c24e2..b6f9d68 100644 --- a/autoload/vimtex/view.vim +++ b/autoload/vimtex/view.vim @@ -346,11 +346,11 @@ endfunction " }}}2 function! s:zathura.start(outfile) dict " {{{2 let exe = {} - let exe.cmd = 'zathura ' + let exe.cmd = 'zathura' let exe.cmd .= ' -x "' . g:vimtex_latexmk_progname \ . ' --servername ' . v:servername \ . ' --remote +\%{line} \%{input}"' - let exe.cmd .= ' ' . g:vimtex_view_zathura_options + let exe.cmd .= ' ' . g:vimtex_view_zathura_options let exe.cmd .= ' ' . vimtex#util#shellescape(a:outfile) call vimtex#util#execute(exe) let self.cmd_start = exe.cmd