Merge pull request #3557 from benknoble/dafny-filename-again

dafny: update filename handling
This commit is contained in:
Horacio Sanson
2021-01-24 14:07:12 +09:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ function! ale_linters#dafny#dafny#Handle(buffer, lines) abort
for l:match in ale#util#GetMatches(a:lines, '\v(.*)\((\d+),(\d+)\): (Verification of .{-} timed out after \d+ seconds)')
call add(l:output, {
\ 'bufnr': a:buffer,
\ 'filename': l:match[1],
\ 'col': l:match[3] + 0,
\ 'lnum': l:match[2] + 0,
\ 'text': l:match[4],