diff options
author | Anna “CyberTailor” <cyber@sysrq.in> | 2024-01-09 08:41:08 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2024-01-09 08:41:08 +0000 |
commit | 4b77fc3240db7fb18bbad7dc187a2860ef46ec3f (patch) | |
tree | 75607b2b7f687e088819a72930cea0f51de79d4e /contrib | |
parent | dd3f04b22709a1c169a8d1689e8244214e0a7c32 (diff) |
contrib/vim: add ALE linter
ALE is faster and otherwise better alternative to Syntastic.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/vim/ale_linters/gmid/gmid.vim | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/contrib/vim/ale_linters/gmid/gmid.vim b/contrib/vim/ale_linters/gmid/gmid.vim new file mode 100644 index 0000000..cf7bed4 --- /dev/null +++ b/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: |