1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-04-03 10:50:31 +08:00
SpaceVim/bundle/ale/autoload/ale/fixers/ocamlformat.vim
2021-02-10 10:31:34 +08:00

18 lines
563 B
VimL
Vendored

" Author: Stephen Lumenta <@sbl>
" Description: Integration of ocamlformat with ALE.
call ale#Set('ocaml_ocamlformat_executable', 'ocamlformat')
call ale#Set('ocaml_ocamlformat_options', '')
function! ale#fixers#ocamlformat#Fix(buffer) abort
let l:executable = ale#Var(a:buffer, 'ocaml_ocamlformat_executable')
let l:options = ale#Var(a:buffer, 'ocaml_ocamlformat_options')
return {
\ 'command': ale#Escape(l:executable)
\ . (empty(l:options) ? '' : ' ' . l:options)
\ . ' --name=%s'
\ . ' -'
\}
endfunction