>>108782020
>is that all swing components? are you doing some parsing or something for the syntax highlighting?
It's all Swing components. The syntax highlighting is just applied with regex, I don's have to do parsing on it because the syntax of the language is really simple. I might add a parser for it later though, so that it is easier to tell between an indirectly assigned rule and a string in a rule.
"Indirectly Assigned":: "Some Value";
Currently, both of those strings will have the same highlighting, despite having different semantic meanings. For the rest of the language, regex seems to be fine and also very fast.
The theming system seems to have a few bugs. I am working on repairing them now.