dense-analysis / dense-analysis/ale
tcllint can't parsing when set option switch '-dbpicky'
Open
bug
- Dominant language
- Vim Script
- Stars
- 14k
- Forks
- 1.5k
- Avg merge
- 17h 49m
- Merged PRs (30d)
- 1
Description
```vim
let g:ale_tcl_nagelfar_options='-dbpicky my.syntax'
```
ALE can't parse any nagelfar's output when I using TCL's option switch `-dbpicky`.
Because It will prefix each error line with file name.
So I need to modify one line inside `nagelfar.vim` ...
```
let l:pattern = '^Line\s\+\([0-9]\+\): \([NEW]\) \(.*\)$'
```
to
```
let l:pattern = '\v^.{-}Line\s+([0-9]+): ([NEW]) (.*)$'
```
Contributor guide
Assessment
This issue has not been assessed yet.