2017-02-11 19:40:57 +00:00
|
|
|
let g:ale_cs_mcs_options = get(g:, 'ale_cs_mcs_options', '')
|
|
|
|
|
|
|
|
function! ale_linters#cs#mcs#GetCommand(buffer) abort
|
2017-04-16 00:24:08 +00:00
|
|
|
return 'mcs -unsafe --parse ' . ale#Var(a:buffer, 'cs_mcs_options') . ' %t'
|
2017-02-11 19:40:57 +00:00
|
|
|
endfunction
|
2017-01-15 12:42:17 +00:00
|
|
|
|
|
|
|
function! ale_linters#cs#mcs#Handle(buffer, lines) abort
|
|
|
|
" Look for lines like the following.
|
|
|
|
"
|
|
|
|
" Tests.cs(12,29): error CSXXXX: ; expected
|
2017-11-19 00:19:09 +00:00
|
|
|
let l:pattern = '^\v(.+\.cs)\((\d+),(\d+)\)\: ([^ ]+) ([^ ]+): (.+)$'
|
2017-01-15 12:42:17 +00:00
|
|
|
let l:output = []
|
|
|
|
|
2017-04-17 23:35:53 +00:00
|
|
|
for l:match in ale#util#GetMatches(a:lines, l:pattern)
|
2017-01-15 12:42:17 +00:00
|
|
|
call add(l:output, {
|
2017-11-19 00:19:09 +00:00
|
|
|
\ 'lnum': l:match[2] + 0,
|
|
|
|
\ 'col': l:match[3] + 0,
|
|
|
|
\ 'type': l:match[4] is# 'error' ? 'E' : 'W',
|
|
|
|
\ 'code': l:match[5],
|
|
|
|
\ 'text': l:match[6],
|
2017-01-15 12:42:17 +00:00
|
|
|
\})
|
|
|
|
endfor
|
|
|
|
|
|
|
|
return l:output
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
call ale#linter#Define('cs',{
|
2017-02-11 19:40:57 +00:00
|
|
|
\ 'name': 'mcs',
|
|
|
|
\ 'output_stream': 'stderr',
|
|
|
|
\ 'executable': 'mcs',
|
|
|
|
\ 'command_callback': 'ale_linters#cs#mcs#GetCommand',
|
|
|
|
\ 'callback': 'ale_linters#cs#mcs#Handle',
|
|
|
|
\})
|