Change order of arguments in s:zathura.start (#504)
This commit is contained in:
parent
930659bc5e
commit
0167c93253
@ -346,10 +346,11 @@ endfunction
|
||||
" }}}2
|
||||
function! s:zathura.start(outfile) dict " {{{2
|
||||
let exe = {}
|
||||
let exe.cmd = 'zathura ' . g:vimtex_view_zathura_options
|
||||
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 .= ' ' . vimtex#util#shellescape(a:outfile)
|
||||
call vimtex#util#execute(exe)
|
||||
let self.cmd_start = exe.cmd
|
||||
|
Loading…
Reference in New Issue
Block a user