diff options
Diffstat (limited to 'ale_linters/tex/chktex.vim')
-rw-r--r-- | ale_linters/tex/chktex.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/tex/chktex.vim b/ale_linters/tex/chktex.vim index c65deede..776974ab 100644 --- a/ale_linters/tex/chktex.vim +++ b/ale_linters/tex/chktex.vim @@ -18,7 +18,7 @@ function! ale_linters#tex#chktex#GetCommand(buffer) abort let l:command .= ' -v0 -p stdin -q' if !empty(l:chktex_config) - let l:command .= ' -l ' . fnameescape(l:chktex_config) + let l:command .= ' -l ' . shellescape(l:chktex_config) endif let l:command .= ' ' . ale#Var(a:buffer, 'tex_chktex_options') |