summaryrefslogtreecommitdiff
path: root/ale_linters/make
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/make')
-rw-r--r--ale_linters/make/checkmake.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/ale_linters/make/checkmake.vim b/ale_linters/make/checkmake.vim
index 3dd8cc91..63c35db3 100644
--- a/ale_linters/make/checkmake.vim
+++ b/ale_linters/make/checkmake.vim
@@ -5,12 +5,12 @@ function! ale_linters#make#checkmake#Handle(buffer, lines) abort
let l:output = []
for l:match in ale#util#GetMatches(a:lines, l:pattern)
- let l:text = l:match[2] . ': ' . l:match[3]
call add(l:output, {
\ 'bufnr': a:buffer,
\ 'lnum': l:match[1] + 0,
\ 'type': 'E',
- \ 'text': l:text,
+ \ 'code': l:match[2],
+ \ 'text': l:match[3],
\})
endfor
return l:output