1 "============================================================================
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.
11 "============================================================================
12 if exists("loaded_haskell_syntax_checker")
15 let loaded_haskell_syntax_checker = 1
17 "bail if the user doesnt have ghc-mod installed
18 if !executable("ghc-mod")
22 function! SyntaxCheckers_haskell_GetLocList()
25 \ "ghc-mod check ". shellescape(expand('%')) . "; " .
26 \ "ghc-mod lint " . shellescape(expand('%')) . ";" .
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,'.
32 return SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat })
35 function! SyntaxCheckers_lhaskell_GetLocList()
36 return SyntaxCheckers_haskell_GetLocList()