RSyntaxTextArea icon indicating copy to clipboard operation
RSyntaxTextArea copied to clipboard

A syntax highlighting, code folding text editor for Java Swing applications.

Results 169 RSyntaxTextArea issues
Sort by recently updated
recently updated
newest added

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...

enhancement

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...

enhancement

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: ![selecao_428](https://cloud.githubusercontent.com/assets/515675/5371076/b3275934-800e-11e4-872a-0fbef50361f0.png) I did this by implementing a parser, but is...

enhancement

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...

enhancement

I wonder if is to let the active links without a specific hotkey! Just click on

enhancement

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...