syntastic/syntax_checkers/yang/pyang.vim

47 lines
1.5 KiB
VimL
Raw Normal View History

2016-04-11 20:27:34 -04:00
"============================================================================
"File: pyang.vim
2017-09-15 14:04:16 -04:00
"Description: Syntax checking plugin for syntastic
2016-04-11 20:27:34 -04:00
"Authors: joshua.downer@gmail.com
2016-04-12 05:21:56 -04: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.
2016-04-11 20:27:34 -04:00
"
"============================================================================
if exists('g:loaded_syntastic_yang_pyang_checker')
finish
endif
let g:loaded_syntastic_yang_pyang_checker = 1
let s:save_cpo = &cpo
set cpo&vim
2016-04-12 07:53:33 -04:00
function! SyntaxCheckers_yang_pyang_GetHighlightRegex(item)
let term = matchstr(a:item['text'], '\m"\zs[^"]\+\ze"')
return term != '' ? '\V\<' . escape(term, '\') . '\>' : ''
endfunction
2016-04-11 20:27:34 -04:00
function! SyntaxCheckers_yang_pyang_GetLocList() dict
let makeprg = self.makeprgBuild({})
2016-04-12 07:02:19 -04:00
let errorformat =
2016-04-12 07:53:33 -04:00
\ '%f:%l: %trror: %m,' .
\ '%f:%l: %tarning: %m'
2016-04-11 20:27:34 -04:00
return SyntasticMake({
\ 'makeprg': makeprg,
\ 'errorformat': errorformat,
\ 'postprocess': ['filterForeignErrors'] })
endfunction
call g:SyntasticRegistry.CreateAndRegisterChecker({
\ 'filetype': 'yang',
\ 'name': 'pyang'})
let &cpo = s:save_cpo
unlet s:save_cpo
" vim: set sw=4 sts=4 et fdm=marker: