reviewdog / errorformat

Vim's quickfix errorformat implementation in Go
https://reviewdog.github.io/errorformat-playground/
MIT License
109 stars 43 forks source link

Introduce end_lnum (`%e`) and end_col (`%k`) #110

Closed haya14busa closed 2 years ago

haya14busa commented 2 years ago

Example:

$ echo '/path/to/file:1-2:3-4: msg' | errorformat '%f:%l-%e:%c-%k: %m'
/path/to/file|1-2 col 3-4| msg
haya14busa commented 2 years ago

Sent an equivalent Vim patch (https://github.com/vim/vim/pull/9624).