1
0
Fork 0
mirror of synced 2024-05-31 06:21:10 -04:00
ultimate-vim/sources_non_forked/ale/autoload/ale/handlers/hlint.vim
2018-09-30 17:58:57 -03:00

9 lines
336 B
VimL

call ale#Set('haskell_hlint_executable', 'hlint')
call ale#Set('haskell_hlint_options', get(g:, 'hlint_options', ''))
function! ale#handlers#hlint#GetExecutable(buffer) abort
let l:executable = ale#Var(a:buffer, 'haskell_hlint_executable')
return ale#handlers#haskell_stack#EscapeExecutable(l:executable, 'hlint')
endfunction