2009-11-25 23:53:44 -05:00
|
|
|
"============================================================================
|
|
|
|
"File: xhtml.vim
|
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
2009-12-16 05:02:36 -05:00
|
|
|
"Maintainer: Martin Grenfell <martin.grenfell at gmail dot com>
|
2009-11-25 23:53:44 -05:00
|
|
|
"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_xhtml_tidy_checker')
|
2013-02-21 10:50:41 -05:00
|
|
|
finish
|
|
|
|
endif
|
2014-01-03 04:29:08 -05:00
|
|
|
let g:loaded_syntastic_xhtml_tidy_checker = 1
|
2013-02-21 10:50:41 -05:00
|
|
|
|
2015-01-04 05:46:54 -05:00
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
2013-04-15 04:21:52 -04:00
|
|
|
if !exists('g:syntastic_xhtml_tidy_ignore_errors')
|
|
|
|
let g:syntastic_xhtml_tidy_ignore_errors = []
|
|
|
|
endif
|
|
|
|
|
2015-01-04 05:46:54 -05:00
|
|
|
" Constants {{{1
|
2014-01-03 04:29:08 -05:00
|
|
|
|
2011-04-29 11:35:26 -04:00
|
|
|
" TODO: join this with html.vim DRY's sake?
|
|
|
|
function! s:TidyEncOptByFenc()
|
2014-10-17 03:28:05 -04:00
|
|
|
let TIDY_OPTS = {
|
2014-04-15 02:09:37 -04:00
|
|
|
\ 'utf-8': '-utf8',
|
|
|
|
\ 'ascii': '-ascii',
|
|
|
|
\ 'latin1': '-latin1',
|
|
|
|
\ 'iso-2022-jp': '-iso-2022',
|
|
|
|
\ 'cp1252': '-win1252',
|
|
|
|
\ 'macroman': '-mac',
|
|
|
|
\ 'utf-16le': '-utf16le',
|
|
|
|
\ 'utf-16': '-utf16',
|
|
|
|
\ 'big5': '-big5',
|
|
|
|
\ 'cp932': '-shiftjis',
|
|
|
|
\ 'sjis': '-shiftjis',
|
|
|
|
\ 'cp850': '-ibm858',
|
|
|
|
\ }
|
2014-10-17 03:28:05 -04:00
|
|
|
return get(TIDY_OPTS, &fileencoding, '-utf8')
|
2011-04-29 11:35:26 -04:00
|
|
|
endfunction
|
|
|
|
|
2015-01-04 05:46:54 -05:00
|
|
|
" }}}1
|
2013-04-15 04:21:52 -04:00
|
|
|
|
2015-01-04 05:46:54 -05:00
|
|
|
function! SyntaxCheckers_xhtml_tidy_GetLocList() dict " {{{1
|
2011-04-29 11:35:26 -04:00
|
|
|
let encopt = s:TidyEncOptByFenc()
|
2014-01-28 14:44:44 -05:00
|
|
|
let makeprg = self.makeprgBuild({ 'args_after': encopt . ' -xml -e' })
|
2013-05-31 14:05:45 -04:00
|
|
|
|
2013-04-11 16:00:25 -04:00
|
|
|
let errorformat=
|
2013-04-17 06:29:46 -04:00
|
|
|
\ '%Wline %l column %v - Warning: %m,' .
|
|
|
|
\ '%Eline %l column %v - Error: %m,' .
|
2013-04-11 16:00:25 -04:00
|
|
|
\ '%-G%.%#'
|
2013-05-31 14:05:45 -04:00
|
|
|
|
|
|
|
let loclist = SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
2015-03-25 12:44:34 -04:00
|
|
|
\ 'defaults': {'bufnr': bufnr('')},
|
2013-07-12 01:08:41 -04:00
|
|
|
\ 'returns': [0, 1, 2] })
|
2013-04-15 04:21:52 -04:00
|
|
|
|
2013-11-04 16:00:51 -05:00
|
|
|
for e in loclist
|
|
|
|
if e['valid'] && s:IgnoreError(e['text']) == 1
|
|
|
|
let e['valid'] = 0
|
2013-04-15 04:21:52 -04:00
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
|
|
|
|
return loclist
|
2015-01-04 05:46:54 -05:00
|
|
|
endfunction " }}}1
|
|
|
|
|
|
|
|
" Utilities {{{1
|
|
|
|
|
|
|
|
function! s:IgnoreError(text) " {{{2
|
|
|
|
for item in g:syntastic_xhtml_tidy_ignore_errors
|
|
|
|
if stridx(a:text, item) != -1
|
|
|
|
return 1
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
return 0
|
|
|
|
endfunction " }}}2
|
|
|
|
|
|
|
|
" }}}1
|
2013-01-27 15:08:30 -05:00
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'xhtml',
|
|
|
|
\ 'name': 'tidy'})
|
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:
|