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

When you add a highlight on the first line, and then insert a new line by putting the cursor at the start of the first line and pressing enter, the...

bug

It seems that the default editor cannot auto close a parenthesis. So is it possible to turn on this function, or where is the core code about auto completion? Thanks...

enhancement

Used for allowing downstream loading of new languages/syntax. Removed files I was using in previous pull (pom.xml, etc.) https://github.com/bobbylight/RSyntaxTextArea/pull/142

Is it possible to make RSyntaxTextAreaHighlighter#addMarkedOccurrenceHighlight public? Or there are any reasons why it's visible only in package? This method will be useful in implementations of OccurrenceMarker.

Hi, We are using RSyntaxTextArea and faced in the past this: https://github.com/bobbylight/RSyntaxTextArea/issues/19 So we implemented the proposed method. We recently had a bug report: https://issues.apache.org/bugzilla/show_bug.cgi?id=57440 As per comment of last...

I would like to implement a custom TokenPainter but classes and variable are package/private only...

When a user pastes text into RSTA, newlines are normalized into \n. This is standard JTextComponent behavior. RSTA would be friendlier if it remembered the "right" newline between each line...

enhancement

There is a paragraph in one line, but the textarea' s width is some limit, I try to setLineWrap(true) to make it wrap, but it does not work. The whole...

TODOs highlighting might be a good addition. Here is an example of TODOs in Java code (in RSyntaxTextArea): ![scr1](https://f.cloud.github.com/assets/2361389/1164703/88c27766-205e-11e3-828e-10f1b20632de.png) And here is how IntelliJ IDEA highlights it: ![src2](https://f.cloud.github.com/assets/2361389/1164708/a0876b86-205e-11e3-9809-f56e4d79b082.png) Basically -...

enhancement

Some of our users are concerned about the automatic creation of a ``` /* * */ ``` block when hitting return after `/*`. Is there a way to turn this...

enhancement