aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.local/share/nvim/site/autoload/neomake/makers/ft/tcl.vim
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/.local/share/nvim/site/autoload/neomake/makers/ft/tcl.vim')
-rw-r--r--dotfiles/.local/share/nvim/site/autoload/neomake/makers/ft/tcl.vim15
1 files changed, 15 insertions, 0 deletions
diff --git a/dotfiles/.local/share/nvim/site/autoload/neomake/makers/ft/tcl.vim b/dotfiles/.local/share/nvim/site/autoload/neomake/makers/ft/tcl.vim
new file mode 100644
index 0000000..76c5af4
--- /dev/null
+++ b/dotfiles/.local/share/nvim/site/autoload/neomake/makers/ft/tcl.vim
@@ -0,0 +1,15 @@
+function! neomake#makers#ft#tcl#EnabledMakers() abort
+ return ['nagelfar']
+endfunction
+
+function! neomake#makers#ft#tcl#nagelfar() abort
+ return {
+ \ 'exe': 'nagelfar',
+ \ 'args': ['-H'],
+ \ 'errorformat':
+ \ '%I%f: %l: N %m,' .
+ \ '%f: %l: %t %m,' .
+ \ '%-GChecking file %f'
+ \ }
+endfunction
+" vim: ts=4 sw=4 et