mirror of
https://github.com/dense-analysis/ale.git
synced 2026-02-21 09:08:34 +08:00
fix: Remove explicit calls to file path in astyle
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user