Joined: 06 Dec 2006 Posts: 255 Location: Queensland, Australia
Posted: Mon 15 Nov 2010, 06:10 Post subject:
fixing the aspell error about nroff mode Subject description: aspell gives an error "WARNING: Unable to enter nroff mode" here's how to fix it.
I installed the aspell pet packages on my Puppy 4.3.1, but when I tried to use it from the command line it displayed an error message:
Code:
WARNING: Unable to enter Nroff mode: Unknown mode: "nroff".
The program worked fine, but the error message was annoying.
The solution was simple, though took a little searching to find the it. I got the following files from my Debian installation:
Incidentally, if you find aspell clumsy the way it doesn't like to check single words from the commandline the way ispell does, then you might like this simple little script:
Code:
#! /bin/sh
# spell
while [ 1 ]
do
read -e -p "word: "
echo $REPLY | aspell pipe | tail -n 2
done
It sits in a permanent loop, prompting for a word and then printing its suggestions after you press ENTER. I keep a terminal open running this script while I'm writing, so if I need help with a word I type it in there and go back to my writing with the answer. _________________ A life! Cool! Where can I download one of those from?
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum