bobbylight
bobbylight
I can't reproduce this with java 8u20 on Windows. Can you provide [an SSCCE](https://sscce.org/) that demonstrates this behavior? Here's what I see with 8u20: 
[4ra1n](https://github.com/4ra1n) sorry for the late reply. Can you provide a smaller example - an SSCCE usually has no dependencies to make it easier to debug and identify the cause.
@mochawoof can you provide an SSCCE (not an entire separate project) to simplify debugging? And can you confirm that with later Java 8 patch releases, it does not occur? If...
@ptorngren Could you do something like this? I think this was my original idea, updating the `TokenMakerFactory`: ```java AbstractTokenMakerFactory atmf = (AbstractTokenMakerFactory)TokenMakerFactory.getDfeaultInstance(); atmf.putMapping("text/myLanguage", "com.ptorngeren.MyTokenMaker"); ``` Or, if you don't feel...
@highgozhangyc - can you reproduce this with the newly-released RSTA 3.5.0 or newer? I don't see the text's baseline being so high in my tests, e.g. on Java 17 on...
There's not currently a way to do this. I had considered looking into the second one (line-level text hints) since it's likely simpler, but didn't have a use case for...
Yep, like you mentioned in the thread you linked to, RSTA's behavior is derived from Eclipse and IntelliJ (the IDEs I used to use, and use today) :) I appreciate...
RSTA's line wrap is per-token, per the `TokenMaker`, and not per typical lexical rules. I think the way to do this "the right way" would be to change the `PlainTextTokenMaker`...
You don't need to create your own `HighlightPainter` for this; that functionality is baked into the library. Like you mentioned, you can create an implementation of the `Parser` interface (or...