contrib/vim: add ALE linter

ALE is faster and otherwise better alternative to Syntastic.
This commit is contained in:
Anna “CyberTailor” 2024-01-09 08:41:08 +00:00 committed by Omar Polo
parent dd3f04b227
commit 4b77fc3240
2 changed files with 37 additions and 0 deletions

1
.gitignore vendored
View File

@ -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

View File

@ -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: