elm-community / SublimeElmLanguageSupport

Elm language syntax highlighting and tool integration for ST2/3.
https://packagecontrol.io/packages/Elm%20Language%20Support
MIT License
33 stars 12 forks source link

Reformat Elm build errors for compatibility with Sublime Text error navigation #11

Closed sentience closed 7 years ago

sentience commented 7 years ago

Recent updates to Sublime Text 3 have introduced the display of error “phantoms” (dismissible one-line error summaries displayed inline at the source of the error). These, as well as the editor’s next/previous error navigation with (Shift-)F4 were incompatible with the multi-line error pattern matching that was previously used.

This new error formatting includes all required information for the display of error “phantoms” on a single line, which brings the above broken features back to life.

Fixes #4

scottcorgan commented 7 years ago

Looks like syntax highlighting in the build output is broken:

Your PR

screen shot 2016-12-22 at 9 55 16 am

Master

screen shot 2016-12-22 at 9 55 41 am
sentience commented 7 years ago

Did you run that build after checking out my branch? My PR changes the output format and the updated syntax highlighting depends on that updated format.

sentience commented 7 years ago

Ping! Hoping someone can review this.