Skip to content

Instantly share code, notes, and snippets.

@zry98
Last active April 23, 2021 00:36
Show Gist options
  • Save zry98/9db12fcedd9f34df942e1fc0e11a840b to your computer and use it in GitHub Desktop.
Save zry98/9db12fcedd9f34df942e1fc0e11a840b to your computer and use it in GitHub Desktop.
Generating dictionaries of other languages for JetBrains IDEs

For example, on Ubuntu (20.04):

$ sudo apt search "aspell-*" | grep -B 1 Spanish  # search for a Spanish dictionary
...
aspell-es/focal 1.11-15 all
  Spanish dictionary for aspell
$ sudo apt install aspell-es  # install it
...
$ aspell --lang es dump master | aspell --lang es expand | tr ' ' '\n' > es.dic  # convert it for JetBrains IDEs
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment