Using an aspell dictionary in Eclipse
Posted on November 19th, 2008 at 12:59
Eclipse has built-in support for spell checking but it only includes two platform dictionaries: English (United Kingdom) and English (United States). Fortunately it is possible to use any aspell dictionary in Eclipse.
Here's how I enabled the Dutch aspell dictionary in Eclipse (on Ubuntu):
- Execute
sudo apt-get install aspell aspell-nl gawk
- Execute
aspell dump master nl | awk -F/ '{print $1}' >dictionary.txt - In Eclipse's preferences, open the page "General > Editors > Text Editors > Spelling".
- Enter the path to your dictionary.txt file in the field User defined dictionary.
- Restart Eclipse.
Based on this.


Very useful information. Thanks!
There is another way to create such dictionary:
aspell dump master nl | cut -d / -f 1 > /tmp/dict.txtHOLY CRAP! THIS IS AMAZING! I've been trying for over a month to find a suitable dictionary (and of the proper format) for eclipse. Thank you very much.
Post new comment