aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.vim/autoload/neomake/makers/ft/proto.vim
blob: fcff57741a5f24d88402c1aa78ca593b8d5a4a58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
function! neomake#makers#ft#proto#EnabledMakers() abort
    return ['prototool']
endfunction

function! neomake#makers#ft#proto#prototool() abort
    return {
                \ 'exe': 'prototool',
                \ 'args': ['lint'],
                \ 'errorformat': '%f:%l:%c:%m',
                \ }
endfunction
" vim: ts=4 sw=4 et