summaryrefslogtreecommitdiff
path: root/mut/neovim/compiler/helm.vim
blob: 7e4b21dca0d3ec0d14507f0050256038fea291ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
if exists('current_compiler')
  finish
endif
let current_compiler = 'go-test'

if exists(':CompilerSet') != 2
  command -nargs=* CompilerSet setlocal <args>
endif

CompilerSet makeprg=compile\ helm\ lint
CompilerSet errorformat=\[%t%.%#\]%.%#\ template:\ %f:%l:%c:\ %m,
                        \\[%t%.%#\]\ %f:\ %m,

" vim: sw=2 sts=2 et