1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
Gaspell version .29.1
Feb 6, 2000
Gnome frontend to the Aspell library. Or put another way a simple
spell checker that does a way better job than ispell does with coming
up with suggestions.
In order to use it both Gnome 1.* (http://www.gnome.org) and Aspell
.29 (http://aspell.sourceforge.net) need to be installed in
your system. Gcc 2.95+ or egcs 1.1 as the C++ compiler is also required.
To build it simply type
make
and then
./gaspell
to run it.
If that does not work edit the Makefile and try again.
To install simply copy the gaspell executable into /usr/local/bin/ or
some other place in your path.
Besides the regular gtk+ and gnome flags gaspell supports the following
standard aspell options:
--conf=<str> main configuration file
--conf-dir=<str> location of main configuration file
--data-dir=<str> location of language data files
--dict-dir=<str> location of the main word list
--add|rem-filter=<str> add or removes a filter
--home-dir=<str> location for personal files
--ignore=<int> ignore words <= n chars
--[dont-]ignore-repl ignore commands to store replacement pairs
--lang=<str> default language to use
--master=<str> main word list base name
--mode=<str> filter mode = none|url|email|sgml|tex
--per-conf=<str> personal configuration file
--personal=<str> personal word list file name
--repl=<str> replacements list file name
--sug-mode=<str> suggestion mode = fast|normal|bad-spellers
--add|rem-email-quote=<str> email quote characters
--email-margin=<int> num chars that can appear before the quote char
--add|rem-sgml-check=<str> sgml tags to always check.
--add|rem-sgml-extension=<str> sgml file extensions
--add|rem-tex-command=<str> TeX commands
--[dont-]tex-check-comments check TeX comments
Please see the aspell manual for a detailed explanation of what all
these options do.
As well as:
--dict-host=<str> Host name of DICT server
--dict-port=<int> Port number of DICT server
--infile=<str> File name to check.
To skip over a region (say a block of code) click on stop. Move the
cursor to where you want to start again. Then click on start.
Lookup will lookup the definition of what ever word that is in the
correction box. Auto will automatically lookup a word when ever you
click on it in the suggestion list.
Try it out and let me know what you think.
kevinatk@home.com
PS: I will switch to automake/autoconf once I figure out how to get it
to work with gnome properly. Any help would be more than appreciated.
|