Merge pull request #2136 from hsanson/368-chktex-latex-report-errors-from-wrong-file

Fix 368 - Lacheck reports errors from input{} files.
This commit is contained in:
w0rp
2018-12-16 13:17:52 +00:00
committed by w0rp
parent df76d8a51c
commit 6ef54842de
5 changed files with 59 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
Before:
call ale#assert#SetUpLinterTest('tex', 'lacheck')
After:
call ale#assert#TearDownLinterTest()
Execute(Executable should default to lacheck):
AssertLinter 'lacheck', ale#Escape('lacheck') . ' %t'
Execute(Should be able to set a custom executable):
let g:ale_tex_lacheck_executable = 'bin/foo'
AssertLinter 'bin/foo' , ale#Escape('bin/foo') . ' %t'