I have created a really small 'language' for which I want to implement custom syntax highlighting. I have tried to do this in CLion using the "File Types" menu, but didn't really get too far:
(In this picture the entire syntax is visible)
How do I add custom syntax highlighting for this language? (I don't really need error checking).
I have found multiple ways to do this:
- Write a plugin for CLion (I have never done this and it won't work on vscode I guess).
- Do it with TextMate, but you need MacOs for that which I don't have.
In the ideal case I would like to simply color some text based on some simple regex, nothing more, is that possible?