diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-12-16 13:17:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-16 13:17:52 +0000 |
commit | 13060a3492f9417831802c39808d70237b906ae1 (patch) | |
tree | fcb164bd6e265f878f6333e42d702ee166f6a97e /ale_linters/tex | |
parent | 2cfa09e02d65cd06649fb1ae5f988b7a110a124d (diff) | |
parent | 5052eca5cb59389275ff1341525214228bad324a (diff) | |
download | ale-13060a3492f9417831802c39808d70237b906ae1.zip |
Merge pull request #2136 from hsanson/368-chktex-latex-report-errors-from-wrong-file
Fix 368 - Lacheck reports errors from input{} files.
Diffstat (limited to 'ale_linters/tex')
-rw-r--r-- | ale_linters/tex/lacheck.vim | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/ale_linters/tex/lacheck.vim b/ale_linters/tex/lacheck.vim index 5e5a94f1..ee09fb41 100644 --- a/ale_linters/tex/lacheck.vim +++ b/ale_linters/tex/lacheck.vim @@ -8,20 +8,26 @@ function! ale_linters#tex#lacheck#Handle(buffer, lines) abort " " "book.tex", line 37: possible unwanted space at "{" " "book.tex", line 38: missing `\ ' after "etc." - let l:pattern = '^".\+", line \(\d\+\): \(.\+\)$' + let l:pattern = '^"\(.\+\)", line \(\d\+\): \(.\+\)$' let l:output = [] for l:match in ale#util#GetMatches(a:lines, l:pattern) " lacheck follows `\input{}` commands. If the cwd is not the same as the " file in the buffer then it will fail to find the inputed items. We do not " want warnings from those items anyway - if !empty(matchstr(l:match[2], '^Could not open ".\+"$')) + if !empty(matchstr(l:match[3], '^Could not open ".\+"$')) + continue + endif + + " lacheck follows `\input{}` commands. We are only interested in + " reporting errors for the current buffer only. + if empty(matchstr(fnamemodify(l:match[1], ':t'), fnamemodify(bufname(a:buffer), ':t'))) continue endif call add(l:output, { - \ 'lnum': l:match[1] + 0, - \ 'text': l:match[2], + \ 'lnum': l:match[2] + 0, + \ 'text': l:match[3], \ 'type': 'W', \}) endfor |