| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| rsta_spellchecker_2.5.1_Source.zip | 2013-11-09 | 273.9 kB | |
| rsta_spellchecker_2.5.1.zip | 2013-11-09 | 253.2 kB | |
| readme.txt | 2013-11-09 | 945 Bytes | |
| Totals: 3 Items | 528.0 kB | 0 | |
SpellChecker 2.5.1 Release Notes
--------------------------------
This is a spell checker add-on for RSyntaxTextArea 2.5.1. It should only be
used with version 2.5.1 of RSyntaxTextArea (or later versions, if they do not
have a newer, corresponding SpellChecker release).
Adding spell checking for English (American or British) to RSyntaxTextArea is
very easy; just follow the example source in
src/org/fife/ui/rsyntaxtextarea/spell/demo/DemoRootPane.java. It basically boils
down to the following code:
File zip = new File("distfiles/english_dic.zip");
SpellingParser parser = SpellingParser.createEnglishSpellingParser(zip, true);
textArea.addParser(parser);
More thorough examples can be found at http://fifesoft.com/rsyntaxtextarea.
Check out the Examples page.
This release stops ignoring mixed-case words, and fixes a bug where words with
apostrophes (e.g. "don't") weren't inserted properly when selected from the
tool tip help.