]>
Commit | Line | Data |
---|---|---|
1 | "============================================================================ | |
2 | "File: haskell.vim | |
3 | "Description: Syntax checking plugin for syntastic.vim | |
4 | "Maintainer: Anthony Carapetis <anthony.carapetis at gmail dot com> | |
5 | "License: This program is free software. It comes without any warranty, | |
6 | " to the extent permitted by applicable law. You can redistribute | |
7 | " it and/or modify it under the terms of the Do What The Fuck You | |
8 | " Want To Public License, Version 2, as published by Sam Hocevar. | |
9 | " See http://sam.zoy.org/wtfpl/COPYING for more details. | |
10 | " | |
11 | "============================================================================ | |
12 | if exists("loaded_haskell_syntax_checker") | |
13 | finish | |
14 | endif | |
15 | let loaded_haskell_syntax_checker = 1 | |
16 | ||
17 | "bail if the user doesnt have ghc-mod installed | |
18 | if !executable("ghc-mod") | |
19 | finish | |
20 | endif | |
21 | ||
22 | function! SyntaxCheckers_haskell_GetLocList() | |
23 | let makeprg = | |
24 | \ "{ ". | |
25 | \ "ghc-mod check ". shellescape(expand('%')) . "; " . | |
26 | \ "ghc-mod lint " . shellescape(expand('%')) . ";" . | |
27 | \ " }" | |
28 | let errorformat = '%-G\\s%#,%f:%l:%c:%trror: %m,%f:%l:%c:%tarning: %m,'. | |
29 | \ '%f:%l:%c: %trror: %m,%f:%l:%c: %tarning: %m,%f:%l:%c:%m,'. | |
30 | \ '%E%f:%l:%c:,%Z%m,' | |
31 | ||
32 | return SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat }) | |
33 | endfunction | |
34 | ||
35 | function! SyntaxCheckers_lhaskell_GetLocList() | |
36 | return SyntaxCheckers_haskell_GetLocList() | |
37 | endfunction |