ale/autoload/ale/fixers/dhall_format.vim

12 lines
294 B
VimL
Raw Normal View History

" Author: toastal <toastal@posteo.net>
2020-08-02 05:31:06 +00:00
" Description: Dhalls built-in formatter
"
2020-08-02 05:31:06 +00:00
function! ale#fixers#dhall_format#Fix(buffer) abort
let l:executable = ale#dhall#GetExecutableWithOptions(a:buffer)
return {
\ 'command': l:executable
\ . ' format'
2020-08-02 05:31:06 +00:00
\}
endfunction