bobbylight

Results 149 comments of bobbylight

@DPovilas, are you using SAS syntax highlighting here? This might be a quirk with that language. RSTA should preserve the marked occurrences last marked when you move the cursor to...

Oh sorry @Hellwig-SE , I didn’t see there was a corresponding PR for the ticket yesterday! Otherwise I would have just merged this.

This is an API change and is thus slated for 4.0.0.

Just for confirmation - the expectation here is that the closing curly brace would be put on the next line (line 3) after an Enter press in this scenario? This...

This isn't built in, and would be a new feature. This already happens for a handful of languages in the [RSTALanguageSupport project](https://github.com/bobbylight/RSTALanguageSupport), so code would have to be factored out...

Not currently, but this can be made into a new feature. This action currently lives in `org.fife.ui.rsyntaxtextarea.AbstractJFlexCTokenMaker`. `insertBreakInMLC` would have to be conditionally called, depending on whether or not this...

Not sure what you mean. Does the built-in [XmlParser](https://github.com/bobbylight/RSyntaxTextArea/blob/master/RSyntaxTextArea/src/main/java/org/fife/ui/rsyntaxtextarea/parser/XmlParser.java) provide an example of what you're trying to do?

With the latest commit, I think I've fixed _most_ of these issues. Please pull it and check it out. The following should be fixed: - Line numbers - Code folds...

Haha fair enough!

I believe this bug is caused by this block: ```java // A code block without lines should just be removed if (!foundBlock && currentFold != null && !currentFold.removeFromParent()) { folds.remove(folds.size()-1);...