diff options
Diffstat (limited to 'ale_linters/cs/mcs.vim')
-rw-r--r-- | ale_linters/cs/mcs.vim | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ale_linters/cs/mcs.vim b/ale_linters/cs/mcs.vim index 3d39cfb7..f1e1fc87 100644 --- a/ale_linters/cs/mcs.vim +++ b/ale_linters/cs/mcs.vim @@ -21,11 +21,9 @@ function! ale_linters#cs#mcs#Handle(buffer, lines) abort call add(l:output, { \ 'bufnr': a:buffer, \ 'lnum': l:match[1] + 0, - \ 'vcol': 0, \ 'col': l:match[2] + 0, \ 'text': l:match[3] . ': ' . l:match[4], \ 'type': l:match[3] =~# '^error' ? 'E' : 'W', - \ 'nr': -1, \}) endfor |