Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ispell-wrapper(1) [debian man page]

ISPELL-WRAPPER(1)														 ISPELL-WRAPPER(1)

NAME
ispell-wrapper - smart wrapper for ispell SYNOPSIS
ispell-wrapper [--emacs=name] [--language=regexp] [--dry-run] [ispell options] file Options (all long only options): --emacs=name Set the language to use by emacs dict name --language=regexp Set the language to use by name --dry-run Only show what would have done DESCRIPTION
ispell-wrapper is a wrapper script for ispell intended to be used in a Debian system in conjunction with the infrastructure introduced by the dictionaries-common package. Option --dry-run will show the string to be run without doing anything else. It automatically sets the -d, -w, and -T options to ispell as a function of the chosen language. Of course, this only works for dictionary packages that comply with the above mentioned Policy. Here is how the language is defined (in order of priority): 1) By matching the emacs dict name given in --emacs option to the name of one of the emacs dicts names provided by installed languages in the system. This match must be exact (although is case insensitive). Note that this will override any value given in the --language option. 2) By matching the regexp given in option --language to the list of installed languages in the system. 3) By matching the regexp stored in the environment variable ISPELLDEFAULT to the list of installed languages in the system. 4) By using the value stored in the user-specific file ~/.ispell-default (use select-default-iwrap(1) to set it). 5) By using the value stored in the site-wide file /etc/dictionaries-common/ispell-default (use select-default-ispell(8) as superuser to set it). Note: regexp matches are case-insensitive and the ISO-8859-1 special characters are transformed into their ASCII equivalents. German ess- zet is equivalent to the character "s" and the ae ligature to the character "e". EXAMPLE
Let us say that the following dictionaries are installed in the system (as appearing in the Debconf question at installation time): castellano (Spanish TeX mode) castellano8 (Spanish 8 bit) portugues (European Portuguese) portugues brasileiro (Brazilian Portuguese) Choosing the regexp (either in the --language option or in the environment variable ISPELLDEFAULT) to be "span" will yield an error, since two languages will match ("castellano" and "castellano8"). However, if the regexp is "span.*8", the language "castellano8 (Spanish 8 bit)" will be chosen. ENVIRONMENT
ISPELLDEFAULT Regexp that matches the name of the default language to use, if no --language option is given. FILES
$HOME/.ispell-default Contains the name of the language to use, if no --language option is given or if the ISPELLDEFAULT environment variable is not set. This is a user-specific choice. /etc/dictionaries-common/ispell-default Name of the language to use when everything above is not set. This is a system-wide setting. SEE ALSO
select-default-ispell(8), select-default-iwrap(1) AUTHORS
Rafael Laboissiere 1.12.11 2013-1-22 ISPELL-WRAPPER(1)

Check Out this Related Man Page

DictionariesCommon(3pm) 												   DictionariesCommon(3pm)

NAME
Debian::DictionariesCommon.pm - dictionaries-common library SYNOPSIS
use Debian::DictionariesCommon q(:all) $dictionaries = parseinfo ('/var/lib/dictionaries-common/ispell/iwolof'); loaddb ('ispell') updatedb ('wordlist') DESCRIPTION
Common functions for use from the dictionaries-common system. CALLING FUNCTIONS
"dico_checkroot" Check for rootness and fail if not. "build_emacsen_support" Put info from dicts info files into emacsen-ispell-dicts.el "build_jed_support" Put info from dicts info files into jed-ispell-dicts.sl "build_squirrelmail_support" Build support file for squirrelmail with a list of available dictionaries and associated spellchecker calls, in php format. "$libdir = getlibdir($class)" Return info dir for given class. "$default = dico_getsysdefault($class)" Return system default value for given class. "$libdir = getuserdefault" Return value for user default ispell dictionary. "dico_get_spellchecker_params($class,\%language)" Get right params for $class (currently unused) and $language "\%dictionaries = loaddb($class)" Read class .db file and return a reference to a hash with its contents. "\%result = parseinfo($file)" Parse given info file and return a reference to a hash with the relevant data. "setsysdefault($value)" Set value for system default ispell dictionary. "setuserdefault" Set value for user default ispell dictionary, after asking to select it from the available values. "updatedb($class)" Parse info files for given class and update class .db file under dictionaries-common cache dir. SEE ALSO
Debian dictionaries-common policy. AUTHORS
Rafael Laboissiere Agustin Martin 1.12.11 2013-1-22 DictionariesCommon(3pm)
Man Page