mirror of
https://github.com/dense-analysis/ale.git
synced 2026-01-09 21:12:31 +08:00
feat: Add project option file support for astyle
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
function! s:set_variables() abort
|
||||
for l:ft in ['c', 'cpp']
|
||||
call ale#Set(l:ft . '_astyle_executable', 'astyle')
|
||||
call ale#Set(l:ft . '_astyle_options', '')
|
||||
endfor
|
||||
endfunction
|
||||
|
||||
@@ -19,9 +20,11 @@ endfunction
|
||||
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
|
||||
|
||||
return {
|
||||
\ 'command': ale#Escape(l:executable) . l:command
|
||||
\ . (empty(l:options) ? '' : ' --project=' . l:options)
|
||||
\}
|
||||
endfunction
|
||||
|
||||
Reference in New Issue
Block a user