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

I tried to solve the comment-mark identification by `ToggleCommentAction.` Basically, the use of `startsWith` and `endsWith` methods allowed only to search for comment-marks at position 0 and `line.length()-1`, not recognizing...

**Description** `ToggleCommentAction` seems to act only at line start. For example, if RSyntaxTextArea contains the following Java code I try to de-comment the second line: ``` private void add(int a,...

bug

**Description** When searching for text, and then deleting that text, there is a leftover highlight line as shown in this screenshot. In line 3, had the word "are" which i...

bug

On windows Java 8, something is bad screenshot ![image](https://github.com/user-attachments/assets/a6e3762d-c9c7-4c51-a70d-42ce1c598471) Through your article, I have roughly learned that this feature is not proficient in JAVA 8. Is there a way to...

bug
waiting-for-feedback

Hello, i have been using some custom TokenMaker that parses some code and spits out a list of tokens which are then converted to RSTA's internal TokenTypes. Now, i have...

Proposed fix for #546. Use `BreakIterator` in `PlainTextTokenMaker` to ensure line wrapping is done in a per-locale, language-specific basis. Remaining issues: * Mark Occurrences marks tokens as identified, which isn't...

As this is my first issue in your project: Thank you very much for your great work - this project is very nice and useful. **Description** It seems that class...

bug

Referring to #607, the following changes has been made: - text surrounded by square brackets (`[some text]`) is no longer recognized as an INI section when placed in a property...

**Description** The example CSS below is not highlighted properly. **Steps to Reproduce** Paste the following into `RSyntaxTextAreaDemoApp` when viewing HTML: ```html a[foo*="bar"] { display: none } /* this is fine...

bug

**Describe the solution you'd like** If possible, I'd like the exception message to explicitly state that the stream was closed because the path leads to a non-existent resource. **Are there...

enhancement