aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.vim/autoload/neomake/makers/mvn.vim
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/.vim/autoload/neomake/makers/mvn.vim')
-rw-r--r--dotfiles/.vim/autoload/neomake/makers/mvn.vim9
1 files changed, 9 insertions, 0 deletions
diff --git a/dotfiles/.vim/autoload/neomake/makers/mvn.vim b/dotfiles/.vim/autoload/neomake/makers/mvn.vim
new file mode 100644
index 0000000..cac2a80
--- /dev/null
+++ b/dotfiles/.vim/autoload/neomake/makers/mvn.vim
@@ -0,0 +1,9 @@
+" vim: ts=4 sw=4 et
+
+function! neomake#makers#mvn#mvn() abort
+ return {
+ \ 'exe': 'mvn',
+ \ 'args': ['install'],
+ \ 'errorformat': '[%tRROR]\ %f:[%l]\ %m,%-G%.%#'
+ \ }
+endfunction