RSyntaxTextArea
RSyntaxTextArea copied to clipboard
A syntax highlighting, code folding text editor for Java Swing applications.
Right now, `org.fife.ui.rsyntaxtextarea.templates.CodeTemplate` is not terribly useful, because it only lets you insert static text and place the caret. `CodeTemplate`s would be much, much more useful if they behaved like...
It would be quite interesting this functionality, I found that there is ErrorStrip class, but I think it is already outdated, and also looking at the code also realize that...
It would be interesting to put a better highlighter for errors: case Token.ERROR_CHAR: case Token.ERROR_IDENTIFIER: case Token.ERROR_NUMBER_FORMAT: case Token.ERROR_STRING_DOUBLE: Ex:  I did this by implementing a parser, but is...
I'm working on an editor with support for multiple tabs, my implementation by design questions / performace is using the same instance of Textarea changing only the RSyntaxDocument. I realized...
Paste document ``` a b c ``` into an empty editor. Highlight line `c` using `RTextArea.addLineHighlight`. Then select the whole document and paste again (actually replacing it). Line `a` gets...
It would appear that the Identifier style token is being applied to all text that is not otherwise highlighted. In Clojure this is happening on all non-"reserved" function names and...
This issue is just to look at the XmlFoldParser to see if performance could be improved. It's mighty slow for larger XML documents.
Not that I particularly like AppleScript or anything, but the JRE forces it on us so my users are going to see it available and try to use it. At...
I wonder if is to let the active links without a specific hotkey! Just click on
This is useful when line highlights are used to show breakpoints. For example, if there is a breakpoint at line X, the line may have a specific background, now if...