Merge pull request #3302 from khaveesh/master

latexindent: Run fixer from stdin instead of a temporary file
This commit is contained in:
Horacio Sanson
2020-08-24 09:16:35 +09:00
committed by GitHub
2 changed files with 3 additions and 9 deletions

View File

@@ -10,9 +10,7 @@ function! ale#fixers#latexindent#Fix(buffer) abort
return {
\ 'command': ale#Escape(l:executable)
\ . ' -l -w'
\ . ' -l'
\ . (empty(l:options) ? '' : ' ' . l:options)
\ . ' %t',
\ 'read_temporary_file': 1,
\}
endfunction