2012-10-29 17:22:28 -04:00
|
|
|
"============================================================================
|
|
|
|
"File: hdevtools.vim
|
2017-09-15 14:04:16 -04:00
|
|
|
"Description: Syntax checking plugin for syntastic
|
2012-10-29 17:22:28 -04:00
|
|
|
"Maintainer: Anthony Carapetis <anthony.carapetis at gmail dot com>
|
|
|
|
"License: This program is free software. It comes without any warranty,
|
|
|
|
" to the extent permitted by applicable law. You can redistribute
|
|
|
|
" it and/or modify it under the terms of the Do What The Fuck You
|
|
|
|
" Want To Public License, Version 2, as published by Sam Hocevar.
|
|
|
|
" See http://sam.zoy.org/wtfpl/COPYING for more details.
|
|
|
|
"
|
|
|
|
"============================================================================
|
|
|
|
|
2015-03-25 12:44:34 -04:00
|
|
|
if exists('g:loaded_syntastic_haskell_hdevtools_checker')
|
2013-02-21 10:50:41 -05:00
|
|
|
finish
|
|
|
|
endif
|
2014-01-03 04:29:08 -05:00
|
|
|
let g:loaded_syntastic_haskell_hdevtools_checker = 1
|
|
|
|
|
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
2013-02-21 10:50:41 -05:00
|
|
|
|
2013-10-28 07:53:33 -04:00
|
|
|
function! SyntaxCheckers_haskell_hdevtools_GetLocList() dict
|
2014-06-24 12:02:42 -04:00
|
|
|
if !exists('g:syntastic_haskell_hdevtools_args') && exists('g:hdevtools_options')
|
|
|
|
call syntastic#log#oneTimeWarn('variable g:hdevtools_options is deprecated, ' .
|
|
|
|
\ 'please use g:syntastic_haskell_hdevtools_args instead')
|
2014-04-10 02:45:11 -04:00
|
|
|
let g:syntastic_haskell_hdevtools_args = g:hdevtools_options
|
|
|
|
endif
|
|
|
|
|
2017-02-15 01:48:45 -05:00
|
|
|
let buf = bufnr('')
|
2013-11-01 05:51:47 -04:00
|
|
|
let makeprg = self.makeprgBuild({
|
2014-04-10 02:45:11 -04:00
|
|
|
\ 'exe_after': 'check',
|
2017-02-15 01:48:45 -05:00
|
|
|
\ 'fname': syntastic#util#shescape(fnamemodify(bufname(buf), ':p')) })
|
2014-04-10 02:45:11 -04:00
|
|
|
|
|
|
|
let errorformat =
|
|
|
|
\ '%-Z %#,'.
|
2016-09-03 10:28:21 -04:00
|
|
|
\ '%W%\m%f:%l:%v%\%%(-%\d%\+%\)%\=: Warning: %m,'.
|
|
|
|
\ '%W%\m%f:%l:%v%\%%(-%\d%\+%\)%\=: Warning:,'.
|
|
|
|
\ '%E%\m%f:%l:%v%\%%(-%\d%\+%\)%\=: %m,'.
|
|
|
|
\ '%E%>%\m%f:%l:%v%\%%(-%\d%\+%\)%\=:,'.
|
2014-04-10 02:45:11 -04:00
|
|
|
\ '%+C %#%m,'.
|
2016-09-03 10:28:21 -04:00
|
|
|
\ '%W%>%\m%f:%l:%v%\%%(-%\d%\+%\)%\=:,'.
|
2014-04-10 02:45:11 -04:00
|
|
|
\ '%+C %#%tarning: %m,'
|
2012-10-29 17:22:28 -04:00
|
|
|
|
2013-05-10 07:11:07 -04:00
|
|
|
return SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
2014-04-10 02:45:11 -04:00
|
|
|
\ 'defaults': {'vcol': 1},
|
2013-05-10 07:11:07 -04:00
|
|
|
\ 'postprocess': ['compressWhitespace'] })
|
2012-10-29 17:22:28 -04:00
|
|
|
endfunction
|
|
|
|
|
2013-01-27 15:08:30 -05:00
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'haskell',
|
|
|
|
\ 'name': 'hdevtools'})
|
|
|
|
|
2014-01-03 04:29:08 -05:00
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
2015-01-04 05:46:54 -05:00
|
|
|
" vim: set sw=4 sts=4 et fdm=marker:
|