]> git.r.bdr.sh - rbdr/dotfiles/blame - vim/syntax_checkers/haskell.vim
Remove backup and DS_Store
[rbdr/dotfiles] / vim / syntax_checkers / haskell.vim
CommitLineData
0d23b6e5
BB
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"============================================================================
12if exists("loaded_haskell_syntax_checker")
13 finish
14endif
15let loaded_haskell_syntax_checker = 1
16
17"bail if the user doesnt have ghc-mod installed
18if !executable("ghc-mod")
19 finish
20endif
21
22function! 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 })
33endfunction
34
35function! SyntaxCheckers_lhaskell_GetLocList()
36 return SyntaxCheckers_haskell_GetLocList()
37endfunction