bobbylight
bobbylight
`:` in JSON is [rendered as a TokenTypes.IDENTIFIER](https://github.com/bobbylight/RSyntaxTextArea/blob/master/RSyntaxTextArea/src/main/java/org/fife/ui/rsyntaxtextarea/modes/JsonTokenMaker.flex#L288), so you should be able to update that style for JSON. I know that sounds a little odd, and it is, but...
I can work on this, hopefully for the next release; in the mean time, you can manually install [Jayatana](https://code.google.com/p/java-swing-ayatana/) as outlined in [this blog post](http://hanynowsky.wordpress.com/2012/05/12/integration-of-java-swing-applications-with-unity-global-menu-in-ubuntu-12-04/). I had to manually re-run...
@gtheimer - can you confirm that this is ana Apple silicon mac? I'm currrently building RText on an old Intel mac. My understanding is it'd have to be run under...
Still sounds like a bug. Are you saying you needed a specific working directory, and leaving that field blank didn't work?
Thanks for the PR. For consideration, can you rebase, squash into a single commit, and remove changes unrelated to the overload (changes to the README, gradlew metadata files, etc.)?
It's not a solution, but can you see if it still occurs if you call `errorStrip.setShowMarkedOccurrences(false)`? Might be a workaround while a fix is researched.
Good point. One gross thing is most `TokenMaker`s seem to consider `,`, `;` and `.` (or a subtle variatin of that triplet) as "identifiers" primarily to look better while rendering...
The chars above should no longer trigger the Mark Occurrences, so hopefully that addresses common cases here. I suppose this is still possible, but it gets harder to solve in...
@dzmipt You'd also want to remember the "original" caret position, so if they hit backspace in your search field enough, you can backtrack to the original position (or prior marches...
Unfortunately, it's not that simple. That change would prevent `Ctrl+Space` from opening the completion choices window if there aren't any prior chars for the start of an identifier :( I'll...