Leafpad is the text editor for the LXDE desktop environment. It does well for editing basic text files, but it lacks a spellchecker.
This is a hack to use the default-installed Hunspell to spell-check your text file.
To accomplish this, you need to save the text file, open it in Hunspell, close Hunspell and re-open the document in Leafpad.
This is accomplished by a script added to your .bashrc. I found this script in a recent Knoppix thread.
Add this to .bashrc:
lpad() { # uses leafpad to edit $1; on closing leafpad, # # # hunspell checks spelling;
#on closing hunspell, leafpad shows corrected copy.
leafpad $1; aspell $1; leafpad $1 &
}
NOTE: You can also use this with ispell, but you'll need to invoke "ispell -c".
NOTE: I found the command line at the bottom of Hunspell to be misleading. For example, it says that pressing "I" is "Insert". It actually means "Accept the word, capitalized as it is in the file, and update private dictionary." As well, "U" is "Uncap". It actually means "Accept the word, and add an uncapitalized (actually, all lower-case) version to the private dictionary." "X" causes you to exit the file with no changes and "Q" causes you to exit, discarding any changes you have already made.
NOTE: Hunspell keeps its dictionaries in /usr/share/hunspell and by default two additional dictionaries are installed. I have found that these other dictionaries, en_CA and en_GB, often confuse Firefox and that is solved easily by deleting all but the en_US files.
RESOURCES
Comments