summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Tindall <kevinkjt2000@gmail.com>2018-01-01 22:21:21 -0600
committerKevin Tindall <kevinkjt2000@gmail.com>2018-01-01 22:21:21 -0600
commitd8f71c46daf21706fa0f2f87de14e04d6675fa5b (patch)
treec5f097d2d656f9356c7140bba22a87e3a2e6a629
parentc165c7c5d11eb827a3be6bab691f20eeb6f6e487 (diff)
downloadale-d8f71c46daf21706fa0f2f87de14e04d6675fa5b.zip
haskell_ghc_options are now added to the ghc command
-rw-r--r--ale_linters/haskell/ghc.vim10
-rw-r--r--doc/ale-haskell.txt10
2 files changed, 19 insertions, 1 deletions
diff --git a/ale_linters/haskell/ghc.vim b/ale_linters/haskell/ghc.vim
index fdf22f9f..daf91c8f 100644
--- a/ale_linters/haskell/ghc.vim
+++ b/ale_linters/haskell/ghc.vim
@@ -1,10 +1,18 @@
" Author: w0rp <devw0rp@gmail.com>
" Description: ghc for Haskell files
+call ale#Set('haskell_ghc_options', '-fno-code -v0')
+
+function! ale_linters#haskell#ghc#GetCommand(buffer) abort
+ return 'ghc '
+ \ . ale#Var(a:buffer, 'haskell_ghc_options')
+ \ . ' %t'
+endfunction
+
call ale#linter#Define('haskell', {
\ 'name': 'ghc',
\ 'output_stream': 'stderr',
\ 'executable': 'ghc',
-\ 'command': 'ghc -fno-code -v0 %t',
+\ 'command_callback': 'ale_linters#haskell#ghc#GetCommand',
\ 'callback': 'ale#handlers#haskell#HandleGHCFormat',
\})
diff --git a/doc/ale-haskell.txt b/doc/ale-haskell.txt
index 0ea40377..9fab39bf 100644
--- a/doc/ale-haskell.txt
+++ b/doc/ale-haskell.txt
@@ -13,6 +13,16 @@ g:ale_haskell_brittany_executable *g:ale_haskell_brittany_executable*
This variable can be changed to use a different executable for brittany.
===============================================================================
+ghc *ale-haskell-ghc*
+
+g:ale_haskell_ghc_options *g:ale_haskell_ghc_options*
+ *b:ale_haskell_ghc_options*
+ Type: |String|
+ Default: `'-fno-code -v0'`
+
+ This variable can be changed to modify flags given to ghc.
+
+===============================================================================
hdevtools *ale-haskell-hdevtools*
g:ale_haskell_hdevtools_executable *g:ale_haskell_hdevtools_executable*