Share

RSyntaxTextArea

Code

Programming Languages: Java

License: GNU Library or Lesser General Public License (LGPL)

Repositories

browse code, statistics cvs -d:pserver:anonymous@rsyntaxtextarea.cvs.sourceforge.net:/cvsroot/rsyntaxtextarea login

cvs -z3 -d:pserver:anonymous@rsyntaxtextarea.cvs.sourceforge.net:/cvsroot/rsyntaxtextarea co -P modulename

Show:

What's happening?

  • Word wrap is done at char boundaries for long tokens

    Word wrapping is done at word boundaries most of the time, but for "long" tokens (tokens that can have embedded whitespace, such as comments), wrapping is done at char boundaries.. The fix fort his will be in WrappedSyntaxView.java, starting at line 99.

    2009-08-29 20:37:53 UTC by robert_futrell

  • Comment: Add interface for syntax/spelling checker

    The SpellChecker add-on will be released alongside the next RSyntaxTextArea release.

    2009-08-24 23:16:25 UTC by robert_futrell

  • Comment: Insertion of closing curly brace on Enter keypress

    Pushed to SVN in revision 124. Will be in the next "official" release.

    2009-08-24 23:13:12 UTC by robert_futrell

  • Comment: Error Strip

    Added to SVN in revision 119. Will be in the next "official" release.

    2009-08-24 17:28:56 UTC by robert_futrell

  • Comment: Changing the Gutter background

    Added in SVN revision 122. Will be in the next "official" release.

    2009-08-24 17:27:41 UTC by robert_futrell

  • Ability to add new keywords to existing languages

    It would be handy to be able to add new keywords to existing language scanners, such as Java. This would allow users to leverage existing TokenMaker implementations with minimal fuss, assuming all they want is new keywords. This would be accomplished by checking each normal identifier parsed against the "new keyword" list. If found, it's highlighted as a keyword. One possible issue is...

    2009-08-19 17:20:40 UTC by nobody

  • Comment: Bug with Line Numbering font

    Fix pushed to SVN, will be in the next RSyntaxTextArea release.

    2009-08-18 20:29:53 UTC by robert_futrell

  • Add ability to add MouseListeners to Gutter

    There is no easy way to add a popup menu to the Gutter component. Perhaps allow adding a MouseListener to the (package private) IconRowHeader. This would provide maximum flexibility, but it might be just as useful to provide a custom event/listener API (something like "LineHeaderMouseListener/LineHeaderMouseEvent", but better named) that add easy methods to return line number clicked and other...

    2009-08-18 03:41:03 UTC by nobody

  • Bug with Line Numbering font

    Originally reported here: http://fifesoft.com/forum/viewtopic.php?f=10&t=270&sid=cbabab07a0608154801130f86a1914d3 Changing the font used for line numbering like so: textScrollPane.getGutter().setLineNumberFont(font) doesn't take effect until disabling, and re-enabling, line numbers: textScrollPane.setLineNumbersEnabled(false); textScrollPane.setLineNumbersEnabled(true); The...

    2009-08-04 16:25:28 UTC by nobody

  • Comment: Add interface for syntax/spelling checker

    A first pass at a spell checker "add-on" is now in the SVN repository: http://svn.fifesoft.com/svn/RSyntaxTextArea/ This will be a small extra jar (under the LGPL) that adds spell checking to RSTA through its addParser() method. The README file in the SpellChecker project has some usage instructions, and the project also has an example program showing usage. I've got some more changes...

    2009-07-29 13:21:48 UTC by robert_futrell

Our Numbers