aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.vim/autoload/neomake/makers/ft/bib.vim
blob: e3a9602cfa16a37f171daad49d32f3c3392735e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
" vim: ts=4 sw=4 et

function! neomake#makers#ft#bib#EnabledMakers() abort
    return []
endfunction

function! neomake#makers#ft#bib#bibtex() abort
    return {
                \ 'exe': 'bibtex',
                \ 'args': ['-terse', '%:r'],
                \ 'append_file': 0,
                \ 'uses_filename': 0,
                \ 'errorformat': '%E%m---line %l of file %f',
                \ 'cwd': '%:p:h'
                \ }
endfunction