Commit Diff


commit - dd3f04b22709a1c169a8d1689e8244214e0a7c32
commit + 4b77fc3240db7fb18bbad7dc187a2860ef46ec3f
blob - 9e51b125589ec40cf399d0aebe270eed97bf8959
blob + 2a74d3a991d5e6bb4035539f72d73918c32985c2
--- .gitignore
+++ .gitignore
@@ -17,6 +17,7 @@ config.log.old
 config.mk
 configure.local
 !contrib/gmid
+!contrib/vim/ale_linters/gmid
 !contrib/vim/syntax_checkers/gmid
 regress/testdata
 regress/*.pem
blob - /dev/null
blob + cf7bed4731a648143a9dbafa1fa38ddadd77ae7a (mode 644)
--- /dev/null
+++ contrib/vim/ale_linters/gmid/gmid.vim
@@ -0,0 +1,36 @@
+" Linter for ALE
+" Language: gmid(1) configuration file
+" Licence: ISC
+
+call ale#Set('gmid_executable', 'gmid')
+
+function! ale_linters#gmid#gmid#Handle(buffer, lines) abort
+    let l:output = []
+    let l:gmid_type_to_ale_type = {
+    \    'error': 'E',
+    \    'warning': 'W',
+    \}
+
+    let l:pattern = '\v^(.*):(\d*) ([a-z]+): (.*)$'
+    for l:match in ale#util#GetMatches(a:lines, l:pattern)
+        call add(l:output, {
+	\   'filename': l:match[1],
+        \   'lnum': l:match[2],
+        \   'type': get(l:gmid_type_to_ale_type, l:match[3], 'E'),
+        \   'text': l:match[4],
+        \})
+    endfor
+
+    return l:output
+endfunction
+
+call ale#linter#Define('gmid', {
+\    'name': 'gmid',
+\    'executable': {buffer -> ale#Var(buffer, 'gmid_executable')},
+\    'command': '%e -nc %s',
+\    'output_stream': 'both',
+\    'lint_file': 1,
+\    'callback': 'ale_linters#gmid#gmid#Handle',
+\})
+
+" vim: set sw=4 sts=4 et fdm=marker: