2012-07-05 02:34:10 -04:00
|
|
|
"============================================================================
|
|
|
|
"File: ada.vim
|
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
|
|
|
"Maintainer: Alfredo Di Napoli <alfredo.dinapoli@gmail.com>
|
|
|
|
"License: This program is free software. It comes without any warranty,
|
2013-03-20 05:31:45 -04:00
|
|
|
" to the extent permitted by applicable law.
|
2012-07-05 02:34:10 -04:00
|
|
|
"
|
|
|
|
"============================================================================
|
|
|
|
|
2013-03-20 05:31:45 -04:00
|
|
|
if exists('g:loaded_syntastic_ada_gcc_checker')
|
2013-02-21 10:50:41 -05:00
|
|
|
finish
|
|
|
|
endif
|
2013-03-20 05:31:45 -04:00
|
|
|
let g:loaded_syntastic_ada_gcc_checker = 1
|
2013-02-21 10:50:41 -05:00
|
|
|
|
2013-03-20 05:31:45 -04:00
|
|
|
if !exists('g:syntastic_ada_compiler')
|
|
|
|
let g:syntastic_ada_compiler = 'gcc'
|
2012-07-05 02:34:10 -04:00
|
|
|
endif
|
|
|
|
|
2013-03-20 05:31:45 -04:00
|
|
|
function! SyntaxCheckers_ada_gcc_IsAvailable()
|
|
|
|
return executable(g:syntastic_ada_compiler)
|
|
|
|
endfunction
|
|
|
|
|
2012-07-05 02:34:10 -04:00
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
2013-03-20 05:31:45 -04:00
|
|
|
if !exists('g:syntastic_ada_compiler_options')
|
|
|
|
let g:syntastic_ada_compiler_options = ''
|
|
|
|
endif
|
|
|
|
|
2012-07-05 02:34:10 -04:00
|
|
|
if !exists('g:syntastic_ada_config_file')
|
|
|
|
let g:syntastic_ada_config_file = '.syntastic_ada_config'
|
|
|
|
endif
|
|
|
|
|
2013-01-27 15:08:30 -05:00
|
|
|
function! SyntaxCheckers_ada_gcc_GetLocList()
|
2013-05-30 12:44:12 -04:00
|
|
|
return syntastic#c#GetLocList('ada', {
|
2013-05-21 03:03:04 -04:00
|
|
|
\ 'errorformat':
|
|
|
|
\ '%-G%f:%s:,' .
|
|
|
|
\ '%f:%l:%c: %m,' .
|
|
|
|
\ '%f:%l: %m',
|
|
|
|
\ 'makeprg_main': '-c -x ada -fsyntax-only',
|
|
|
|
\ 'makeprg_headers': '-x ada',
|
|
|
|
\ 'headers_pattern': '\.ads$' })
|
2012-07-05 02:34:10 -04:00
|
|
|
endfunction
|
|
|
|
|
2013-01-27 15:08:30 -05:00
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'ada',
|
|
|
|
\ 'name': 'gcc'})
|
|
|
|
|
2012-07-05 02:34:10 -04:00
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
|
|
|
" vim: set et sts=4 sw=4:
|