diff options
author | w0rp <devw0rp@gmail.com> | 2017-04-15 12:52:08 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-04-15 12:52:08 +0100 |
commit | cab68cba250fb81a4d20ffd637925a708bb46e8a (patch) | |
tree | 14a917e41e977aa5cd591ebdb2a2eda7c29530f3 /ale_linters/tex/lacheck.vim | |
parent | c9a5d9845b9bff9174c4bb3b67a9f7bfda190ee6 (diff) | |
download | ale-cab68cba250fb81a4d20ffd637925a708bb46e8a.zip |
Make code more consistent
Diffstat (limited to 'ale_linters/tex/lacheck.vim')
-rw-r--r-- | ale_linters/tex/lacheck.vim | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/ale_linters/tex/lacheck.vim b/ale_linters/tex/lacheck.vim index 94b79e6c..300e95d8 100644 --- a/ale_linters/tex/lacheck.vim +++ b/ale_linters/tex/lacheck.vim @@ -13,38 +13,38 @@ function! ale_linters#tex#lacheck#GetCommand(buffer) abort endfunction function! ale_linters#tex#lacheck#Handle(buffer, lines) abort - " Mattes lines like: - " - " "book.tex", line 37: possible unwanted space at "{" - " "book.tex", line 38: missing `\ ' after "etc." - - let l:pattern = '^".\+", line \(\d\+\): \(.\+\)$' - let l:output = [] - - for l:line in a:lines - let l:match = matchlist(l:line, l:pattern) - - if len(l:match) == 0 - continue - endif - - " 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 ".\+"$')) - continue - endif - - call add(l:output, { - \ 'bufnr': a:buffer, - \ 'lnum': l:match[1] + 0, - \ 'col': 0, - \ 'text': l:match[2], - \ 'type': 'W', - \}) - endfor - - return l:output + " Mattes lines like: + " + " "book.tex", line 37: possible unwanted space at "{" + " "book.tex", line 38: missing `\ ' after "etc." + + let l:pattern = '^".\+", line \(\d\+\): \(.\+\)$' + let l:output = [] + + for l:line in a:lines + let l:match = matchlist(l:line, l:pattern) + + if len(l:match) == 0 + continue + endif + + " 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 ".\+"$')) + continue + endif + + call add(l:output, { + \ 'bufnr': a:buffer, + \ 'lnum': l:match[1] + 0, + \ 'col': 0, + \ 'text': l:match[2], + \ 'type': 'W', + \}) + endfor + + return l:output endfunction call ale#linter#Define('tex', { |