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