mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 04:34:25 +08:00
* Fix chktex highlighting wrong column when using tabs instead of spaces Fixes #723 chktex implemented feature request [1] for allowing setting options from the command line. Thanks to that we can tell it to treat tab character as of one space width, i.e. one char. That means, after we translate the output back to Vim columns, we get correct numbers. [1]: https://savannah.nongnu.org/bugs/?56486 * Add test_tex_chktex.vader * Use functions to set g: variables in ale_linters/tex/chktex.vim * Update ale_linters#tex#chktex#GetCommand() to use '%e'
53 lines
1.6 KiB
VimL
53 lines
1.6 KiB
VimL
" Author: Andrew Balmos - <andrew@balmos.org>
|
|
" Description: chktex for LaTeX files
|
|
|
|
call ale#Set('tex_chktex_executable', 'chktex')
|
|
call ale#Set('tex_chktex_options', '-I')
|
|
|
|
function! ale_linters#tex#chktex#GetCommand(buffer) abort
|
|
let l:options = ''
|
|
|
|
" Avoid bug when used without -p (last warning has gibberish for a filename)
|
|
let l:options .= ' -v0 -p stdin -q'
|
|
" Avoid bug of reporting wrong column when using tabs (issue #723)
|
|
let l:options .= ' -s TabSize=1'
|
|
|
|
" Check for optional .chktexrc
|
|
let l:chktex_config = ale#path#FindNearestFile(a:buffer, '.chktexrc')
|
|
|
|
if !empty(l:chktex_config)
|
|
let l:options .= ' -l ' . ale#Escape(l:chktex_config)
|
|
endif
|
|
|
|
let l:options .= ' ' . ale#Var(a:buffer, 'tex_chktex_options')
|
|
|
|
return '%e' . l:options
|
|
endfunction
|
|
|
|
function! ale_linters#tex#chktex#Handle(buffer, lines) abort
|
|
" Mattes lines like:
|
|
"
|
|
" stdin:499:2:24:Delete this space to maintain correct pagereferences.
|
|
" stdin:507:81:3:You should enclose the previous parenthesis with `{}'.
|
|
let l:pattern = '^stdin:\(\d\+\):\(\d\+\):\(\d\+\):\(.\+\)$'
|
|
let l:output = []
|
|
|
|
for l:match in ale#util#GetMatches(a:lines, l:pattern)
|
|
call add(l:output, {
|
|
\ 'lnum': l:match[1] + 0,
|
|
\ 'col': l:match[2] + 0,
|
|
\ 'text': l:match[4] . ' (' . (l:match[3]+0) . ')',
|
|
\ 'type': 'W',
|
|
\})
|
|
endfor
|
|
|
|
return l:output
|
|
endfunction
|
|
|
|
call ale#linter#Define('tex', {
|
|
\ 'name': 'chktex',
|
|
\ 'executable': {b -> ale#Var(b, 'tex_chktex_executable')},
|
|
\ 'command': function('ale_linters#tex#chktex#GetCommand'),
|
|
\ 'callback': 'ale_linters#tex#chktex#Handle'
|
|
\})
|