1
0
Fork 0
mirror of synced 2024-06-15 13:31:10 -04:00
ultimate-vim/sources_non_forked/ale/autoload/ale/handlers/hlint.vim

9 lines
336 B
VimL
Raw Normal View History

2018-09-30 16:58:57 -04:00
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