I’ve been doing research the last few days to determine if Sublime Text 3 can replace Text Mate (Mac) for my IDE.
The current problem I’m stuck on is how to format build system results so they can contain clickable links which can select error lines in sources files. In Text Mate this was very easy because the build scripts could output HTML to a window which could easily be formatted anyway I like.
In Sublime Text 3 I figured out how to create custom build systems with scripts but the output is always displayed in the little console pane at the bottom of the window. Additionally there is a syntax option which applies a .tmLanguage syntax to the output but this doesn’t allow for clickable links so I can jump to the errors in my code.
I read that the build system calls into the exec.py file which can be overridden but there is no more information I could find on that front. I’ve also seen evidence in exec.py that Sublime Text can insert HTML/CSS into the text but again I have no idea where to start.
Can anyone point me in the right direction? Thanks.