mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-04-09 23:16:19 +08:00
10 lines
218 B
VimL
Vendored
10 lines
218 B
VimL
Vendored
" vim: ts=4 sw=4 et
|
|
|
|
function! neomake#makers#mvn#mvn() abort
|
|
return {
|
|
\ 'exe': 'mvn',
|
|
\ 'args': ['install'],
|
|
\ 'errorformat': '[%tRROR]\ %f:[%l]\ %m,%-G%.%#'
|
|
\ }
|
|
endfunction
|