Using an aspell dictionary in Eclipse

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):

  1. Execute
    sudo apt-get install aspell aspell-nl gawk
  2. Execute
    aspell dump master nl | awk -F/ '{print $1}' >dictionary.txt
  3. In Eclipse's preferences, open the page "General > Editors > Text Editors > Spelling".
  4. Enter the path to your dictionary.txt file in the field User defined dictionary.
  5. 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.txt

HOLY 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

The content of this field is kept private and will not be shown publicly.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.

More information about formatting options