summaryrefslogtreecommitdiff
path: root/ale_linters/haskell/ghc_mod.vim
blob: 9762be7a69795e7aaf07f1169f9f456d9616fa2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
" Author: wizzup <wizzup@gmail.com>
" Description: ghc-mod for Haskell files

call ale#Set('haskell_ghc_mod_executable', 'ghc-mod')

function! ale_linters#haskell#ghc_mod#GetCommand (buffer) abort
    let l:executable = ale#Var(a:buffer, 'haskell_ghc_mod_executable')

    return ale#handlers#haskell_stack#EscapeExecutable(l:executable, 'ghc-mod')
    \   . ' --map-file %s=%t check %s'
endfunction

call ale#linter#Define('haskell', {
\   'name': 'ghc_mod',
\   'aliases': ['ghc-mod'],
\   'executable_callback': ale#VarFunc('haskell_ghc_mod_executable'),
\   'command_callback': 'ale_linters#haskell#ghc_mod#GetCommand',
\   'callback': 'ale#handlers#haskell#HandleGHCFormat',
\})