2016-12-04 22:19:06 +00:00
|
|
|
" Author: Andrew Balmos - <andrew@balmos.org>
|
|
|
|
" Description: lacheck for LaTeX files
|
|
|
|
|
2018-08-02 22:44:12 +00:00
|
|
|
call ale#Set('tex_lacheck_executable', 'lacheck')
|
2017-02-11 19:40:57 +00:00
|
|
|
|
2016-12-04 22:19:06 +00:00
|
|
|
function! ale_linters#tex#lacheck#Handle(buffer, lines) abort
|
2017-04-15 11:52:08 +00:00
|
|
|
" Mattes lines like:
|
|
|
|
"
|
|
|
|
" "book.tex", line 37: possible unwanted space at "{"
|
|
|
|
" "book.tex", line 38: missing `\ ' after "etc."
|
2018-12-10 14:38:03 +00:00
|
|
|
let l:pattern = '^"\(.\+\)", line \(\d\+\): \(.\+\)$'
|
2017-04-15 11:52:08 +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-04-15 11:52:08 +00:00
|
|
|
" 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
|
2018-12-10 14:38:03 +00:00
|
|
|
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'), bufname(a:buffer)))
|
2017-04-15 11:52:08 +00:00
|
|
|
continue
|
|
|
|
endif
|
|
|
|
|
|
|
|
call add(l:output, {
|
2018-12-10 14:38:03 +00:00
|
|
|
\ 'lnum': l:match[2] + 0,
|
|
|
|
\ 'text': l:match[3],
|
2017-04-15 11:52:08 +00:00
|
|
|
\ 'type': 'W',
|
|
|
|
\})
|
|
|
|
endfor
|
|
|
|
|
|
|
|
return l:output
|
2016-12-04 22:19:06 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
call ale#linter#Define('tex', {
|
|
|
|
\ 'name': 'lacheck',
|
2018-08-02 22:44:12 +00:00
|
|
|
\ 'executable_callback': ale#VarFunc('tex_lacheck_executable'),
|
|
|
|
\ 'command': '%e %t',
|
2016-12-04 22:19:06 +00:00
|
|
|
\ 'callback': 'ale_linters#tex#lacheck#Handle'
|
|
|
|
\})
|