mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-04-03 10:50:31 +08:00
15 lines
436 B
VimL
Vendored
15 lines
436 B
VimL
Vendored
call ale#Set('crystal_format_executable', 'crystal')
|
|
call ale#Set('crystal_format_options', '')
|
|
|
|
function! ale#fixers#crystal#Fix(buffer) abort
|
|
let l:executable = ale#Var(a:buffer, 'crystal_format_executable')
|
|
let l:options = ale#Var(a:buffer, 'crystal_format_options')
|
|
|
|
return {
|
|
\ 'command': ale#Escape(l:executable)
|
|
\ . ' tool format'
|
|
\ . ale#Pad(l:options)
|
|
\ . ' -'
|
|
\}
|
|
endfunction
|