fix: Remove explicit calls to file path in astyle

This commit is contained in:
jhlink
2020-07-26 22:02:32 -04:00
parent 75723e4522
commit 0e6578cf65
2 changed files with 7 additions and 6 deletions

View File

@@ -21,10 +21,11 @@ function! ale#fixers#astyle#Fix(buffer) abort
let l:executable = ale#fixers#astyle#Var(a:buffer, 'executable')
let l:filename = ale#Escape(bufname(a:buffer))
let l:options = ale#fixers#astyle#Var(a:buffer, 'options')
let l:command = ' --stdin=' . l:filename
let l:command = ' --stdin='
return {
\ 'command': ale#Escape(l:executable) . l:command
\ 'command': ale#Escape(l:executable)
\ . (empty(l:options) ? '' : ' --project=' . l:options)
\ . l:command
\}
endfunction