blob: aa8e209bc39147a744213a968fd9ae462ce8e860 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
" MNV compiler file
" Compiler: Yamllint for YAML
" Maintainer: Romain Lafourcade <romainlafourcade@gmail.com>
" Last Change: 2021 July 21
" 2024 Apr 03 by The MNV Project (removed :CompilerSet definition)
" 2025 Nov 16 by The MNV Project (set errorformat)
if exists("current_compiler")
finish
endif
let current_compiler = "yamllint"
CompilerSet makeprg=yamllint\ -f\ parsable
" CompilerSet errorformat=%f:%l:%c:\ [%t%*[^]]]\ %m,%f:%l:%c:\ [%*[^]]]\ %m
CompilerSet errorformat&
|