aboutsummaryrefslogtreecommitdiffstats
path: root/syntax_checkers/beancount/bean_check.vim
blob: b477104bde2eae5ca2526d3ffb5deb3e4e060946 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
if exists('g:loaded_syntastic_beancount_bean_check')
    finish
endif

let g:loaded_syntastic_beancount_bean_check=1

let s:save_cpo = &cpoptions
set cpoptions&vim

function! SyntaxCheckers_beancount_bean_check_IsAvailable() dict
    return executable(l:self.getExec())
endfunction

function! SyntaxCheckers_beancount_bean_check_GetLocList() dict
    let l:makeprg = l:self.makeprgBuild({})
    return SyntasticMake({ 'makeprg': l:makeprg })
endfunction

call g:SyntasticRegistry.CreateAndRegisterChecker({
    \ 'filetype': 'beancount',
    \ 'name': 'bean_check',
    \ 'exec': 'bean-check'})

let &cpoptions = s:save_cpo
unlet s:save_cpo