diff options
author | w0rp <devw0rp@gmail.com> | 2017-08-18 19:33:23 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-08-18 19:33:23 +0100 |
commit | 41c4f3431c1a5ae2da8b0b859a92dbddc9fe7534 (patch) | |
tree | 64b5f836767ea7441f2252fc403f4669af9bb5c2 /ale_linters/haskell/ghc-mod.vim | |
parent | 2560cdd56ea9117b45bd9a9c5f8e5b9b3025fce2 (diff) | |
download | ale-41c4f3431c1a5ae2da8b0b859a92dbddc9fe7534.zip |
Fix #858 - Fix the stack ghc-mod command
Diffstat (limited to 'ale_linters/haskell/ghc-mod.vim')
-rw-r--r-- | ale_linters/haskell/ghc-mod.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/haskell/ghc-mod.vim b/ale_linters/haskell/ghc-mod.vim index 35f94c33..1b15d8c2 100644 --- a/ale_linters/haskell/ghc-mod.vim +++ b/ale_linters/haskell/ghc-mod.vim @@ -11,6 +11,6 @@ call ale#linter#Define('haskell', { call ale#linter#Define('haskell', { \ 'name': 'stack-ghc-mod', \ 'executable': 'stack', -\ 'command': 'stack exec ghc-mod --map-file %s=%t check %s', +\ 'command': 'stack exec ghc-mod -- --map-file %s=%t check %s', \ 'callback': 'ale#handlers#haskell#HandleGHCFormat', \}) |