Duhemm / sbt-errors-summary

sbt plugin to show a summary of compilation messages.
MIT License
201 stars 11 forks source link

Don't show line number on left of error code caret pointer #29

Closed yawaramin closed 7 years ago

yawaramin commented 7 years ago

We don't need it since we already show it on the left of the code itself.

Planned approach: get accurate length of line/column numbers prefix by building up their strings without colours initially. Then colour them just before outputting them. This way we can we can use the correct length of the string (without colours) as the space prefix for the caret pointer.

Duhemm commented 7 years ago

Fixed in #36