2011-12-24 08:18:18 -05:00
|
|
|
"============================================================================
|
|
|
|
"File: yaml.vim
|
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
|
|
|
"Maintainer: Martin Grenfell <martin.grenfell 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.
|
|
|
|
"
|
|
|
|
"
|
2012-07-01 11:07:17 -04:00
|
|
|
"Installation: $ npm install -g js-yaml
|
2011-12-24 08:18:18 -05:00
|
|
|
"
|
|
|
|
"============================================================================
|
|
|
|
|
2013-02-04 18:40:09 -05:00
|
|
|
function! SyntaxCheckers_yaml_jsyaml_IsAvailable()
|
2013-01-27 15:08:30 -05:00
|
|
|
return executable("js-yaml")
|
|
|
|
endfunction
|
2011-12-24 08:18:18 -05:00
|
|
|
|
2013-01-27 15:08:30 -05:00
|
|
|
function! SyntaxCheckers_yaml_jsyaml_GetLocList()
|
2013-01-20 06:07:05 -05:00
|
|
|
let makeprg = syntastic#makeprg#build({
|
|
|
|
\ 'exe': 'js-yaml',
|
|
|
|
\ 'args': '--compact' })
|
2011-12-24 08:18:18 -05:00
|
|
|
let errorformat='Error on line %l\, col %c:%m,%-G%.%#'
|
|
|
|
return SyntasticMake({ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
|
|
|
\ 'defaults': {'bufnr': bufnr("")} })
|
|
|
|
endfunction
|
2013-01-27 15:08:30 -05:00
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'yaml',
|
|
|
|
\ 'name': 'jsyaml'})
|