summaryrefslogtreecommitdiff
path: root/autoload/ale/fixers/hfmt.vim
blob: 0407b7132823bcf9c00b6a1f01564ec92f22e4f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
" Author: zack <zack@kourouma.me>
" Description: Integration of hfmt with ALE.

call ale#Set('haskell_hfmt_executable', 'hfmt')

function! ale#fixers#hfmt#Fix(buffer) abort
    let l:executable = ale#Var(a:buffer, 'haskell_hfmt_executable')

    return {
    \   'command': ale#handlers#haskell_stack#EscapeExecutable(l:executable, 'hfmt')
    \       . ' -w'
    \       . ' %t',
    \   'read_temporary_file': 1,
    \}
endfunction