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