ALE runs, linter runs, linter emits warning, ALE displays nothing #3857
-
I have a LaTeX file with a definite linting warning from chktex:
vim-ale is running (ALEInfo works):
Note how ALE even sees the linter output. But yet, there is 0 indication of this error in my editor window on line 102. I tried I would have asked on IRC about this, but the current README mentions Freenode, and I can't connect there without an account (and given the recent turmoil there, I don't really want to do so). |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
And of course a minute after posting this, I found the problem. I was using a Unfortunately, said file (which is probably 10+ years old) contained overrides for the |
Beta Was this translation helpful? Give feedback.
And of course a minute after posting this, I found the problem.
I was using a
chktexrc
file (because I want to disable a few warnings, and add a few of my own commands that are ok to be followed by space).Unfortunately, said file (which is probably 10+ years old) contained overrides for the
-vN
output formats. Since ALE expects something specific there, it broke. If you look at the command output in my initial report, it has a prefix of12
( the warning #), which I probably added at some point for easier fix lookup. Dropping the format overrides made ALE work as expected.