aboutsummaryrefslogtreecommitdiff
path: root/.vim/autoload/neomake/makers/sbt.vim
blob: 93e233bbd6be3a86fd9e2e2886a4ebbeca58b516 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
" vim: ts=4 sw=4 et

function! neomake#makers#sbt#sbt() abort
    return {
        \ 'exe': 'sbt',
        \ 'args': ['-Dsbt.log.noformat=true', 'compile'],
        \ 'errorformat':
            \ '%E[%trror]\ %f:%l:%c:\ %m,' .
            \ '%-Z[error]\ %p^,' .
            \ '%-C%.%#,' .
            \ '%-G%.%#'
    \ }
endfunction