From 05d194517aa5290944e1980d3ab25265f2101b6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20M=C3=BCller-Schrader?= Date: Tue, 2 Jan 2024 12:54:37 +0100 Subject: [PATCH] Fix problem preventing the compilation using arara --- autoload/vimtex/compiler/arara.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/vimtex/compiler/arara.vim b/autoload/vimtex/compiler/arara.vim index 92285a60cf..400d0880b8 100644 --- a/autoload/vimtex/compiler/arara.vim +++ b/autoload/vimtex/compiler/arara.vim @@ -23,9 +23,9 @@ function! s:compiler.__check_requirements() abort dict " {{{1 endfunction " }}}1 -function! s:compiler.__build_cmd(opts) abort dict " {{{1 +function! s:compiler.__build_cmd(passed_options) abort dict " {{{1 return 'arara ' . join(self.options) - \ . ' ' . join(a:opts) + \ . ' ' . a:passed_options \ . ' ' . vimtex#util#shellescape(self.state.base) endfunction