syntastic/syntax_checkers/glsl/cgc.vim

67 lines
2.1 KiB
VimL
Raw Normal View History

2013-12-27 03:07:08 -05:00
"============================================================================
"File: glsl.vim
"Description: Syntax checker for OpenGL Shading Language
"Maintainer: Joshua Rahm <joshuarahm@gmail.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_glsl_cgc_checker')
2013-12-27 03:07:08 -05:00
finish
endif
2014-01-03 02:54:10 -05:00
let g:loaded_syntastic_glsl_cgc_checker = 1
2013-12-27 03:07:08 -05:00
2014-01-03 02:54:10 -05:00
let s:glsl_extensions = {
\ 'glslf': 'gpu_fp',
\ 'glslv': 'gpu_vp',
\ 'frag': 'gpu_fp',
\ 'vert': 'gpu_vp',
\ 'fp': 'gpu_fp',
\ 'vp': 'gpu_vp'
\ }
2013-12-27 03:07:08 -05:00
2014-01-03 02:54:10 -05:00
let s:save_cpo = &cpo
set cpo&vim
2013-12-27 03:28:25 -05:00
2015-01-04 05:46:54 -05:00
function! SyntaxCheckers_glsl_cgc_GetLocList() dict " {{{1
2017-02-15 01:48:45 -05:00
let buf = bufnr('')
2013-12-27 03:07:08 -05:00
let makeprg = self.makeprgBuild({
2017-02-15 01:48:45 -05:00
\ 'args_before': '-oglsl -profile ' . s:GetProfile(buf),
\ 'args': (exists('g:syntastic_glsl_options') ? ' ' . g:syntastic_glsl_options : '') })
2013-12-27 03:07:08 -05:00
let errorformat =
2015-03-25 12:44:34 -04:00
\ '%E%f(%l) : error %m,' .
\ '%W%f(%l) : warning %m'
2013-12-27 03:07:08 -05:00
return SyntasticMake({
\ 'makeprg': makeprg,
\ 'errorformat': errorformat })
2015-01-04 05:46:54 -05:00
endfunction " }}}1
2013-12-27 03:07:08 -05:00
2015-01-04 05:46:54 -05:00
" Utilities {{{1
2017-02-15 01:48:45 -05:00
function! s:GetProfile(buf) " {{{2
let profile = matchstr(get(filter(getbufline(a:buf, 1, 100), 'v:val =~# "\\m\\C^//\\s*profile:"'), 0, ''), '\m\C^//\s*profile:\s*\zs.*')
if profile ==# ''
let extensions = syntastic#util#bufVar(a:buf, 'glsl_extensions', s:glsl_extensions)
let profile = get(extensions, tolower(fnamemodify(bufname(a:buf), ':e')), 'gpu_vert')
2014-01-03 02:54:10 -05:00
endif
return profile
2015-01-04 05:46:54 -05:00
endfunction " }}}2
" }}}1
2014-01-03 02:54:10 -05:00
2013-12-27 03:07:08 -05:00
call g:SyntasticRegistry.CreateAndRegisterChecker({
\'filetype': 'glsl',
\'name': 'cgc'})
2014-01-03 02:54:10 -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: