I am using emacs on Mac Os X and I installed aspell with homebrew. I accidentally added a wrong word to my "private dictionary", but where is that dictionary? How can I open it and see what I have added in there?
I found a similar question here (How to remove an entry from ispell private dictionary?) but I couldn't find the directories they mentioned. I found one aspell folder at \usr\local\Cellar\aspell\
, but I still can't find which one is the private dictionary.
Search for a file ending in
.pws
-- it will probably look something like this.aspell.en.pws
for English.You can also run something like this to see where everything is located -- just change the path to wherever your own
aspell
executable is located:If you want to change things, you can create an
aspell.conf
and put it inside theetc
folder, which should be in the same set of directories near to where theaspell
executable is located. I actually had to create theetc
folder and theaspell.conf
because the make process of a generic installation did not create that folder. Running the above command-line will also tell you the location whereaspell
looks for theaspell.conf
file.Sample
aspell.conf
: I only use Spanish and English -- the default on my setup is the latter -- borrowed (and modified from): https://github.com/jone/dotfiles/blob/master/aspell.confThese are my notes for installing
aspell
on Windows and OSX: