1
0
mirror of https://github.com/amix/vimrc synced 2025-07-12 22:24:59 +08:00

Update ui_glue.vim, lightline.txt, and 333 more files...

This commit is contained in:
geezuslucifer@gmail.com
2021-06-30 11:54:34 -05:00
parent 43c7efba8d
commit 1cca3b1df2
335 changed files with 8451 additions and 2020 deletions

View File

@ -0,0 +1,18 @@
function! ale_linters#systemd#systemd_analyze#Handle(buffer, lines) abort
return ale#util#MapMatches(a:lines, '\v(.+):([0-9]+): (.+)', {match -> {
\ 'lnum': str2nr(match[2]),
\ 'col': 1,
\ 'type': 'W',
\ 'text': match[3],
\}})
endfunction
call ale#linter#Define('systemd', {
\ 'name': 'systemd_analyze',
\ 'aliases': ['systemd-analyze'],
\ 'executable': 'systemd-analyze',
\ 'command': 'SYSTEMD_LOG_COLOR=0 %e --user verify %s',
\ 'callback': 'ale_linters#systemd#systemd_analyze#Handle',
\ 'output_stream': 'both',
\ 'lint_file': 1,
\})