2005-12-29 22:51:09 +00:00
|
|
|
|
*spell.txt* For Vim version 7.0aa. Last change: 2005 Dec 29
|
2005-03-20 22:37:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
VIM REFERENCE MANUAL by Bram Moolenaar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Spell checking *spell*
|
|
|
|
|
|
|
|
|
|
1. Quick start |spell-quickstart|
|
2005-06-30 22:04:15 +00:00
|
|
|
|
2. Remarks on spell checking |spell-remarks|
|
|
|
|
|
3. Generating a spell file |spell-mkspell|
|
|
|
|
|
4. Spell file format |spell-file-format|
|
2005-03-20 22:37:15 +00:00
|
|
|
|
|
|
|
|
|
{Vi does not have any of these commands}
|
|
|
|
|
|
|
|
|
|
Spell checking is not available when the |+syntax| feature has been disabled
|
|
|
|
|
at compile time.
|
|
|
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
|
1. Quick start *spell-quickstart*
|
|
|
|
|
|
|
|
|
|
This command switches on spell checking: >
|
|
|
|
|
|
|
|
|
|
:setlocal spell spelllang=en_us
|
|
|
|
|
|
2005-04-15 21:13:42 +00:00
|
|
|
|
This switches on the 'spell' option and specifies to check for US English.
|
2005-03-20 22:37:15 +00:00
|
|
|
|
|
|
|
|
|
The words that are not recognized are highlighted with one of these:
|
2005-06-16 21:59:56 +00:00
|
|
|
|
SpellBad word not recognized |hl-SpellBad|
|
2005-07-03 21:39:27 +00:00
|
|
|
|
SpellCap word not capitalised |hl-SpellCap|
|
2005-06-16 21:59:56 +00:00
|
|
|
|
SpellRare rare word |hl-SpellRare|
|
|
|
|
|
SpellLocal wrong spelling for selected region |hl-SpellLocal|
|
2005-03-20 22:37:15 +00:00
|
|
|
|
|
2005-04-15 21:13:42 +00:00
|
|
|
|
Vim only checks words for spelling, there is no grammar check.
|
|
|
|
|
|
2005-07-21 21:08:21 +00:00
|
|
|
|
If the 'mousemodel' option is set to "popup" and the cursor is on a badly
|
|
|
|
|
spelled word or it is "popup_setpos" and the mouse pointer is on a badly
|
2005-11-26 23:46:11 +00:00
|
|
|
|
spelled word, then the popup menu will contain a submenu to replace the bad
|
2005-07-21 21:08:21 +00:00
|
|
|
|
word. Note: this slows down the appearance of the popup menu.
|
|
|
|
|
|
2005-04-15 21:13:42 +00:00
|
|
|
|
To search for the next misspelled word:
|
|
|
|
|
|
|
|
|
|
*]s* *E756*
|
|
|
|
|
]s Move to next misspelled word after the cursor.
|
2005-04-20 19:45:58 +00:00
|
|
|
|
A count before the command can be used to repeat.
|
2005-08-29 22:25:38 +00:00
|
|
|
|
'wrapscan' applies.
|
2005-04-15 21:13:42 +00:00
|
|
|
|
|
|
|
|
|
*[s*
|
2005-04-20 19:45:58 +00:00
|
|
|
|
[s Like "]s" but search backwards, find the misspelled
|
2005-06-22 22:35:10 +00:00
|
|
|
|
word before the cursor. Doesn't recognize words
|
|
|
|
|
split over two lines, thus may stop at words that are
|
2005-07-02 23:19:16 +00:00
|
|
|
|
not highlighted as bad. Does not stop at word with
|
|
|
|
|
missing capital at the start of a line.
|
2005-04-20 19:45:58 +00:00
|
|
|
|
|
|
|
|
|
*]S*
|
|
|
|
|
]S Like "]s" but only stop at bad words, not at rare
|
|
|
|
|
words or words for another region.
|
|
|
|
|
|
|
|
|
|
*[S*
|
|
|
|
|
[S Like "]S" but search backwards.
|
2005-04-15 21:13:42 +00:00
|
|
|
|
|
2005-03-20 22:37:15 +00:00
|
|
|
|
|
2005-09-13 21:20:47 +00:00
|
|
|
|
To add words to your own word list:
|
2005-06-07 21:09:25 +00:00
|
|
|
|
|
|
|
|
|
*zg*
|
2005-07-02 23:19:16 +00:00
|
|
|
|
zg Add word under the cursor as a good word to the first
|
2005-08-30 21:55:26 +00:00
|
|
|
|
name in 'spellfile'. A count may precede the command
|
|
|
|
|
to indicate the entry in 'spellfile' to be used. A
|
|
|
|
|
count of two uses the second entry.
|
|
|
|
|
|
|
|
|
|
In Visual mode the selected characters are added as a
|
|
|
|
|
word (including white space!).
|
|
|
|
|
When the cursor is on text that is marked as badly
|
|
|
|
|
spelled then the marked text is used.
|
|
|
|
|
Otherwise the word under the cursor, separated by
|
|
|
|
|
non-word characters, is used.
|
|
|
|
|
|
|
|
|
|
If the word is explicitly marked as bad word in
|
|
|
|
|
another spell file the result is unpredictable.
|
2005-06-07 21:09:25 +00:00
|
|
|
|
|
2005-07-01 22:41:52 +00:00
|
|
|
|
*zG*
|
2005-07-02 23:19:16 +00:00
|
|
|
|
zG Like "zg" but add the word to the internal word list
|
|
|
|
|
|internal-wordlist|.
|
2005-07-01 22:41:52 +00:00
|
|
|
|
|
2005-06-07 21:09:25 +00:00
|
|
|
|
*zw*
|
2005-07-02 23:19:16 +00:00
|
|
|
|
zw Like "zg" but mark the word as a wrong (bad) word.
|
2005-06-07 21:09:25 +00:00
|
|
|
|
|
2005-07-01 22:41:52 +00:00
|
|
|
|
*zW*
|
2005-07-02 23:19:16 +00:00
|
|
|
|
zW Like "zw" but add the word to the internal word list
|
|
|
|
|
|internal-wordlist|.
|
2005-07-01 22:41:52 +00:00
|
|
|
|
|
2005-06-16 21:59:56 +00:00
|
|
|
|
*:spe* *:spellgood*
|
2005-07-02 23:19:16 +00:00
|
|
|
|
:[count]spe[llgood] {word}
|
2005-07-05 21:48:14 +00:00
|
|
|
|
Add {word} as a good word to 'spellfile', like with
|
2005-07-02 23:19:16 +00:00
|
|
|
|
"zg". Without count the first name is used, with a
|
|
|
|
|
count of two the second entry, etc.
|
2005-06-07 21:09:25 +00:00
|
|
|
|
|
2005-07-05 21:48:14 +00:00
|
|
|
|
:spe[llgood]! {word} Add {word} as a good word to the internal word list,
|
2005-07-02 23:19:16 +00:00
|
|
|
|
like with "zG".
|
2005-07-01 22:41:52 +00:00
|
|
|
|
|
2005-06-16 21:59:56 +00:00
|
|
|
|
*:spellw* *:spellwrong*
|
2005-07-02 23:19:16 +00:00
|
|
|
|
:[count]spellw[rong] {word}
|
2005-07-05 21:48:14 +00:00
|
|
|
|
Add {word} as a wrong (bad) word to 'spellfile', as
|
2005-07-02 23:19:16 +00:00
|
|
|
|
with "zw". Without count the first name is used, with
|
|
|
|
|
a count of two the second entry, etc.
|
2005-06-07 21:09:25 +00:00
|
|
|
|
|
2005-07-05 21:48:14 +00:00
|
|
|
|
:spellw[rong]! {word} Add {word} as a wrong (bad) word to the internal word
|
2005-07-01 22:41:52 +00:00
|
|
|
|
list.
|
|
|
|
|
|
2005-06-25 23:04:51 +00:00
|
|
|
|
After adding a word to 'spellfile' with the above commands its associated
|
2005-06-30 22:04:15 +00:00
|
|
|
|
".spl" file will automatically be updated and reloaded. If you change
|
|
|
|
|
'spellfile' manually you need to use the |:mkspell| command. This sequence of
|
|
|
|
|
commands mostly works well: >
|
2005-07-02 23:19:16 +00:00
|
|
|
|
:edit <file in 'spellfile'>
|
2005-06-25 23:04:51 +00:00
|
|
|
|
< (make changes to the spell file) >
|
|
|
|
|
:mkspell! %
|
|
|
|
|
|
|
|
|
|
More details about the 'spellfile' format below |spell-wordlist-format|.
|
2005-06-07 21:09:25 +00:00
|
|
|
|
|
2005-07-02 23:19:16 +00:00
|
|
|
|
*internal-wordlist*
|
2005-07-01 22:41:52 +00:00
|
|
|
|
The internal word list is used for all buffers where 'spell' is set. It is
|
|
|
|
|
not stored, it is lost when you exit Vim. It is also cleared when 'encoding'
|
|
|
|
|
is set.
|
|
|
|
|
|
2005-06-07 21:09:25 +00:00
|
|
|
|
|
2005-06-13 22:28:56 +00:00
|
|
|
|
Finding suggestions for bad words:
|
2005-12-10 20:23:46 +00:00
|
|
|
|
*z=*
|
|
|
|
|
z= For the word under/after the cursor suggest correctly
|
2005-06-30 22:04:15 +00:00
|
|
|
|
spelled words. This also works to find alternatives
|
|
|
|
|
for a word that is not highlighted as a bad word,
|
|
|
|
|
e.g., when the word after it is bad.
|
2005-06-22 22:35:10 +00:00
|
|
|
|
The results are sorted on similarity to the word
|
|
|
|
|
under/after the cursor.
|
2005-08-21 22:17:52 +00:00
|
|
|
|
This may take a long time. Hit CTRL-C when you get
|
2005-06-13 22:28:56 +00:00
|
|
|
|
bored.
|
2005-08-21 22:17:52 +00:00
|
|
|
|
|
|
|
|
|
If the command is used without a count the
|
|
|
|
|
alternatives are listed and you can enter the number
|
|
|
|
|
of your choice or press <Enter> if you don't want to
|
|
|
|
|
replace. You can also use the mouse to click on your
|
|
|
|
|
choice (only works if the mouse can be used in Normal
|
|
|
|
|
mode and when there are no line wraps). Click on the
|
|
|
|
|
first line (the header) to cancel.
|
|
|
|
|
|
|
|
|
|
If a count is used that suggestion is used, without
|
2005-12-10 20:23:46 +00:00
|
|
|
|
prompting. For example, "1z=" always takes the first
|
2005-08-21 22:17:52 +00:00
|
|
|
|
suggestion.
|
|
|
|
|
|
|
|
|
|
If 'verbose' is non-zero a score will be displayed
|
|
|
|
|
with the suggestions to indicate the likeliness to the
|
|
|
|
|
badly spelled word (the higher the score the more
|
|
|
|
|
different).
|
2005-06-21 22:37:39 +00:00
|
|
|
|
When a word was replaced the redo command "." will
|
|
|
|
|
repeat the word replacement. This works like "ciw",
|
2005-08-23 21:02:42 +00:00
|
|
|
|
the good word and <Esc>. This does NOT work for Thai
|
|
|
|
|
and other languages without spaces between words.
|
2005-06-21 22:37:39 +00:00
|
|
|
|
|
2005-06-28 23:32:02 +00:00
|
|
|
|
*:spellr* *:spellrepall* *E752* *E753*
|
2005-12-10 20:23:46 +00:00
|
|
|
|
:spellr[epall] Repeat the replacement done by |z=| for all matches
|
2005-06-28 23:32:02 +00:00
|
|
|
|
with the replaced word in the current window.
|
|
|
|
|
|
2005-08-11 20:09:58 +00:00
|
|
|
|
In Insert mode, when the cursor is after a badly spelled word, you can use
|
|
|
|
|
CTRL-X s to find suggestions. This works like Insert mode completion. Use
|
|
|
|
|
CTRL-N to use the next suggestion, CTRL-P to go back. |i_CTRL-X_s|
|
|
|
|
|
|
2005-06-21 22:37:39 +00:00
|
|
|
|
The 'spellsuggest' option influences how the list of suggestions is generated
|
|
|
|
|
and sorted. See |'spellsuggest'|.
|
2005-06-13 22:28:56 +00:00
|
|
|
|
|
2005-07-02 23:19:16 +00:00
|
|
|
|
The 'spellcapcheck' option is used to check the first word of a sentence
|
|
|
|
|
starts with a capital. This doesn't work for the first word in the file.
|
|
|
|
|
When there is a line break right after a sentence the highlighting of the next
|
2005-08-12 19:59:19 +00:00
|
|
|
|
line may be postponed. Use |CTRL-L| when needed. Also see |set-spc-auto| for
|
|
|
|
|
how it can be set automatically when 'spelllang' is set.
|
2005-07-02 23:19:16 +00:00
|
|
|
|
|
2005-06-30 22:04:15 +00:00
|
|
|
|
==============================================================================
|
|
|
|
|
2. Remarks on spell checking *spell-remarks*
|
2005-06-13 22:28:56 +00:00
|
|
|
|
|
2005-03-22 23:03:44 +00:00
|
|
|
|
PERFORMANCE
|
|
|
|
|
|
2005-06-30 22:04:15 +00:00
|
|
|
|
Vim does on-the-fly spell checking. To make this work fast the word list is
|
|
|
|
|
loaded in memory. Thus this uses a lot of memory (1 Mbyte or more). There
|
|
|
|
|
might also be a noticeable delay when the word list is loaded, which happens
|
|
|
|
|
when 'spell' is set and when 'spelllang' is set while 'spell' was already set.
|
|
|
|
|
To minimize the delay each word list is only loaded once, it is not deleted
|
|
|
|
|
when 'spelllang' is made empty or 'spell' is reset. When 'encoding' is set
|
|
|
|
|
all the word lists are reloaded, thus you may notice a delay then too.
|
2005-03-22 23:03:44 +00:00
|
|
|
|
|
|
|
|
|
|
2005-03-20 22:37:15 +00:00
|
|
|
|
REGIONS
|
|
|
|
|
|
|
|
|
|
A word may be spelled differently in various regions. For example, English
|
|
|
|
|
comes in (at least) these variants:
|
|
|
|
|
|
|
|
|
|
en all regions
|
2005-04-19 21:40:26 +00:00
|
|
|
|
en_au Australia
|
2005-03-20 22:37:15 +00:00
|
|
|
|
en_ca Canada
|
2005-04-19 21:40:26 +00:00
|
|
|
|
en_gb Great Britain
|
|
|
|
|
en_nz New Zealand
|
|
|
|
|
en_us USA
|
2005-03-20 22:37:15 +00:00
|
|
|
|
|
|
|
|
|
Words that are not used in one region but are used in another region are
|
2005-06-16 21:59:56 +00:00
|
|
|
|
highlighted with SpellLocal |hl-SpellLocal|.
|
2005-03-20 22:37:15 +00:00
|
|
|
|
|
2005-04-15 21:13:42 +00:00
|
|
|
|
Always use lowercase letters for the language and region names.
|
2005-03-20 22:37:15 +00:00
|
|
|
|
|
2005-06-08 22:05:14 +00:00
|
|
|
|
When adding a word with |zg| or another command it's always added for all
|
|
|
|
|
regions. You can change that by manually editing the 'spellfile'. See
|
2005-07-04 22:49:24 +00:00
|
|
|
|
|spell-wordlist-format|. Note that the regions as specified in the files in
|
2005-11-26 23:46:11 +00:00
|
|
|
|
'spellfile' are only used when all entries in 'spelllang' specify the same
|
2005-07-04 22:49:24 +00:00
|
|
|
|
region (not counting files specified by their .spl name).
|
2005-06-08 22:05:14 +00:00
|
|
|
|
|
2005-08-16 23:01:50 +00:00
|
|
|
|
*spell-german*
|
2005-08-15 21:41:48 +00:00
|
|
|
|
Specific exception: For German these special regions are used:
|
|
|
|
|
de all German words accepted
|
|
|
|
|
de_de old and new spelling
|
|
|
|
|
de_19 old spelling
|
|
|
|
|
de_20 new spelling
|
|
|
|
|
de_at Austria
|
|
|
|
|
de_ch Switzerland
|
|
|
|
|
|
2005-09-05 22:11:52 +00:00
|
|
|
|
*spell-russian*
|
|
|
|
|
Specific exception: For Russian these special regions are used:
|
|
|
|
|
ru all Russian words accepted
|
|
|
|
|
ru_ru "IE" letter spelling
|
|
|
|
|
ru_yo "YO" letter spelling
|
|
|
|
|
|
2005-08-16 23:01:50 +00:00
|
|
|
|
*spell-yiddish*
|
|
|
|
|
Yiddish requires using "utf-8" encoding, because of the special characters
|
|
|
|
|
used. If you are using latin1 Vim will use transliterated (romanized) Yiddish
|
|
|
|
|
instead. If you want to use transliterated Yiddish with utf-8 use "yi-tr".
|
|
|
|
|
In a table:
|
|
|
|
|
'encoding' 'spelllang'
|
|
|
|
|
utf-8 yi Yiddish
|
|
|
|
|
latin1 yi transliterated Yiddish
|
|
|
|
|
utf-8 yi-tr transliterated Yiddish
|
|
|
|
|
|
2005-03-20 22:37:15 +00:00
|
|
|
|
|
2005-06-23 22:36:45 +00:00
|
|
|
|
SPELL FILES *spell-load*
|
2005-03-20 22:37:15 +00:00
|
|
|
|
|
|
|
|
|
Vim searches for spell files in the "spell" subdirectory of the directories in
|
2005-06-08 22:05:14 +00:00
|
|
|
|
'runtimepath'. The name is: LL.EEE.spl, where:
|
2005-04-15 21:13:42 +00:00
|
|
|
|
LL the language name
|
|
|
|
|
EEE the value of 'encoding'
|
2005-03-20 22:37:15 +00:00
|
|
|
|
|
2005-06-23 22:36:45 +00:00
|
|
|
|
The value for "LL" comes from 'spelllang', but excludes the region name.
|
|
|
|
|
Examples:
|
|
|
|
|
'spelllang' LL ~
|
|
|
|
|
en_us en
|
|
|
|
|
en-rare en-rare
|
|
|
|
|
medical_ca medical
|
|
|
|
|
|
2005-06-08 22:05:14 +00:00
|
|
|
|
Only the first file is loaded, the one that is first in 'runtimepath'. If
|
|
|
|
|
this succeeds then additionally files with the name LL.EEE.add.spl are loaded.
|
|
|
|
|
All the ones that are found are used.
|
|
|
|
|
|
2005-07-02 23:19:16 +00:00
|
|
|
|
Additionally, the files related to the names in 'spellfile' are loaded. These
|
|
|
|
|
are the files that |zg| and |zw| add good and wrong words to.
|
2005-06-23 22:36:45 +00:00
|
|
|
|
|
2005-04-17 20:28:32 +00:00
|
|
|
|
Exceptions:
|
|
|
|
|
- Vim uses "latin1" when 'encoding' is "iso-8859-15". The euro sign doesn't
|
|
|
|
|
matter for spelling.
|
|
|
|
|
- When no spell file for 'encoding' is found "ascii" is tried. This only
|
|
|
|
|
works for languages where nearly all words are ASCII, such as English. It
|
|
|
|
|
helps when 'encoding' is not "latin1", such as iso-8859-2, and English text
|
2005-06-08 22:05:14 +00:00
|
|
|
|
is being edited. For the ".add" files the same name as the found main
|
|
|
|
|
spell file is used.
|
|
|
|
|
|
|
|
|
|
For example, with these values:
|
|
|
|
|
'runtimepath' is "~/.vim,/usr/share/vim70,~/.vim/after"
|
|
|
|
|
'encoding' is "iso-8859-2"
|
|
|
|
|
'spelllang' is "pl"
|
|
|
|
|
|
|
|
|
|
Vim will look for:
|
|
|
|
|
1. ~/.vim/spell/pl.iso-8859-2.spl
|
|
|
|
|
2. /usr/share/vim70/spell/pl.iso-8859-2.spl
|
|
|
|
|
3. ~/.vim/spell/pl.iso-8859-2.add.spl
|
|
|
|
|
4. /usr/share/vim70/spell/pl.iso-8859-2.add.spl
|
|
|
|
|
5. ~/.vim/after/spell/pl.iso-8859-2.add.spl
|
|
|
|
|
|
|
|
|
|
This assumes 1. is not found and 2. is found.
|
|
|
|
|
|
|
|
|
|
If 'encoding' is "latin1" Vim will look for:
|
|
|
|
|
1. ~/.vim/spell/pl.latin1.spl
|
|
|
|
|
2. /usr/share/vim70/spell/pl.latin1.spl
|
|
|
|
|
3. ~/.vim/after/spell/pl.latin1.spl
|
|
|
|
|
4. ~/.vim/spell/pl.ascii.spl
|
|
|
|
|
5. /usr/share/vim70/spell/pl.ascii.spl
|
|
|
|
|
6. ~/.vim/after/spell/pl.ascii.spl
|
|
|
|
|
|
|
|
|
|
This assumes none of them are found (Polish doesn't make sense when leaving
|
|
|
|
|
out the non-ASCII characters).
|
2005-03-20 22:37:15 +00:00
|
|
|
|
|
2005-03-22 23:03:44 +00:00
|
|
|
|
Spelling for EBCDIC is currently not supported.
|
|
|
|
|
|
2005-04-15 21:13:42 +00:00
|
|
|
|
A spell file might not be available in the current 'encoding'. See
|
|
|
|
|
|spell-mkspell| about how to create a spell file. Converting a spell file
|
2005-04-17 20:28:32 +00:00
|
|
|
|
with "iconv" will NOT work!
|
2005-03-20 22:37:15 +00:00
|
|
|
|
|
2005-04-15 21:13:42 +00:00
|
|
|
|
*E758* *E759*
|
|
|
|
|
When loading a spell file Vim checks that it is properly formatted. If you
|
2005-04-17 20:28:32 +00:00
|
|
|
|
get an error the file may be truncated, modified or intended for another Vim
|
|
|
|
|
version.
|
2005-04-15 21:13:42 +00:00
|
|
|
|
|
2005-03-22 23:03:44 +00:00
|
|
|
|
|
|
|
|
|
WORDS
|
|
|
|
|
|
|
|
|
|
Vim uses a fixed method to recognize a word. This is independent of
|
|
|
|
|
'iskeyword', so that it also works in help files and for languages that
|
|
|
|
|
include characters like '-' in 'iskeyword'. The word characters do depend on
|
|
|
|
|
'encoding'.
|
|
|
|
|
|
2005-06-13 22:28:56 +00:00
|
|
|
|
The table with word characters is stored in the main .spl file. Therefore it
|
|
|
|
|
matters what the current locale is when generating it! A .add.spl file does
|
2005-06-25 23:04:51 +00:00
|
|
|
|
not contain a word table though.
|
2005-06-13 22:28:56 +00:00
|
|
|
|
|
2005-06-08 22:05:14 +00:00
|
|
|
|
A word that starts with a digit is always ignored. That includes hex numbers
|
|
|
|
|
in the form 0xff and 0XFF.
|
2005-03-22 23:03:44 +00:00
|
|
|
|
|
|
|
|
|
|
2005-06-22 22:35:10 +00:00
|
|
|
|
WORD COMBINATIONS
|
|
|
|
|
|
|
|
|
|
It is possible to spell-check words that include a space. This is used to
|
|
|
|
|
recognize words that are invalid when used by themselves, e.g. for "et al.".
|
|
|
|
|
It can also be used to recognize "the the" and highlight it.
|
|
|
|
|
|
|
|
|
|
The number of spaces is irrelevant. In most cases a line break may also
|
|
|
|
|
appear. However, this makes it difficult to find out where to start checking
|
|
|
|
|
for spelling mistakes. When you make a change to one line and only that line
|
|
|
|
|
is redrawn Vim won't look in the previous line, thus when "et" is at the end
|
|
|
|
|
of the previous line "al." will be flagged as an error. And when you type
|
|
|
|
|
"the<CR>the" the highlighting doesn't appear until the first line is redrawn.
|
|
|
|
|
Use |CTRL-L| to redraw right away. "[s" will also stop at a word combination
|
|
|
|
|
with a line break.
|
|
|
|
|
|
|
|
|
|
When encountering a line break Vim skips characters such as '*', '>' and '"',
|
|
|
|
|
so that comments in C, shell and Vim code can be spell checked.
|
|
|
|
|
|
|
|
|
|
|
2005-04-20 19:45:58 +00:00
|
|
|
|
SYNTAX HIGHLIGHTING *spell-syntax*
|
2005-03-22 23:03:44 +00:00
|
|
|
|
|
|
|
|
|
Files that use syntax highlighting can specify where spell checking should be
|
|
|
|
|
done:
|
|
|
|
|
|
2005-06-08 22:05:14 +00:00
|
|
|
|
1. everywhere default
|
|
|
|
|
2. in specific items use "contains=@Spell"
|
|
|
|
|
3. everywhere but specific items use "contains=@NoSpell"
|
2005-03-22 23:03:44 +00:00
|
|
|
|
|
2005-06-08 22:05:14 +00:00
|
|
|
|
For the second method adding the @NoSpell cluster will disable spell checking
|
|
|
|
|
again. This can be used, for example, to add @Spell to the comments of a
|
|
|
|
|
program, and add @NoSpell for items that shouldn't be checked.
|
2005-03-22 23:03:44 +00:00
|
|
|
|
|
2005-06-22 22:35:10 +00:00
|
|
|
|
|
|
|
|
|
VIM SCRIPTS
|
|
|
|
|
|
|
|
|
|
If you want to write a Vim script that does something with spelling, you may
|
|
|
|
|
find these functions useful:
|
|
|
|
|
|
|
|
|
|
spellbadword() find badly spelled word at the cursor
|
|
|
|
|
spellsuggest() get list of spelling suggestions
|
2005-06-30 22:04:15 +00:00
|
|
|
|
soundfold() get the sound-a-like version of a word
|
2005-06-22 22:35:10 +00:00
|
|
|
|
|
2005-08-12 19:59:19 +00:00
|
|
|
|
|
|
|
|
|
SETTING 'spellcapcheck' AUTOMATICALLY *set-spc-auto*
|
|
|
|
|
|
|
|
|
|
After the 'spelllang' option has been set successfully, Vim will source the
|
|
|
|
|
files "spell/LANG.vim" in 'runtimepath'. "LANG" is the value of 'spelllang'
|
|
|
|
|
up to the first comma, dot or underscore. This can be used to set options
|
|
|
|
|
specifically for the language, especially 'spellcapcheck'.
|
|
|
|
|
|
|
|
|
|
The distribution includes a few of these files. Use this command to see what
|
|
|
|
|
they do: >
|
|
|
|
|
:next $VIMRUNTIME/spell/*.vim
|
|
|
|
|
|
|
|
|
|
Note that the default scripts don't set 'spellcapcheck' if it was changed from
|
|
|
|
|
the default value. This assumes the user prefers another value then.
|
|
|
|
|
|
2005-08-15 21:41:48 +00:00
|
|
|
|
|
|
|
|
|
DOUBLE SCORING *spell-double-scoring*
|
|
|
|
|
|
|
|
|
|
The 'spellsuggest' option can be used to select "double" scoring. This
|
|
|
|
|
mechanism is based on the principle that there are two kinds of spelling
|
|
|
|
|
mistakes:
|
|
|
|
|
|
|
|
|
|
1. You know how to spell the word, but mistype something. This results in a
|
|
|
|
|
small editing distance (character swapped/omitted/inserted) and possibly a
|
|
|
|
|
word that sounds completely different.
|
|
|
|
|
|
|
|
|
|
2. You don't know how to spell the word and type something that sounds right.
|
|
|
|
|
The edit distance can be big but the word is similar after sound-folding.
|
|
|
|
|
|
|
|
|
|
Since scores for these two mistakes will be very different we use a list
|
|
|
|
|
for each and mix them.
|
|
|
|
|
|
|
|
|
|
The sound-folding is slow and people that know the language won't make the
|
|
|
|
|
second kind of mistakes. Therefore 'spellsuggest' can be set to select the
|
|
|
|
|
preferred method for scoring the suggestions.
|
|
|
|
|
|
2005-03-20 22:37:15 +00:00
|
|
|
|
==============================================================================
|
2005-06-30 22:04:15 +00:00
|
|
|
|
3. Generating a spell file *spell-mkspell*
|
2005-04-15 21:13:42 +00:00
|
|
|
|
|
|
|
|
|
Vim uses a binary file format for spelling. This greatly speeds up loading
|
|
|
|
|
the word list and keeps it small.
|
2005-06-27 22:48:21 +00:00
|
|
|
|
*.aff* *.dic* *Myspell*
|
2005-04-15 21:13:42 +00:00
|
|
|
|
You can create a Vim spell file from the .aff and .dic files that Myspell
|
|
|
|
|
uses. Myspell is used by OpenOffice.org and Mozilla. You should be able to
|
|
|
|
|
find them here:
|
|
|
|
|
http://lingucomponent.openoffice.org/spell_dic.html
|
2005-06-22 22:35:10 +00:00
|
|
|
|
You can also use a plain word list. The results are the same, the choice
|
2005-06-30 22:04:15 +00:00
|
|
|
|
depends on what word lists you can find.
|
2005-04-15 21:13:42 +00:00
|
|
|
|
|
2005-07-03 21:39:27 +00:00
|
|
|
|
If you install Aap (from www.a-a-p.org) you can use the recipes in the
|
|
|
|
|
runtime/spell/??/ directories. Aap will take care of downloading the files,
|
|
|
|
|
apply patches needed for Vim and build the .spl file.
|
|
|
|
|
|
2005-06-19 22:54:15 +00:00
|
|
|
|
Make sure your current locale is set properly, otherwise Vim doesn't know what
|
|
|
|
|
characters are upper/lower case letters. If the locale isn't available (e.g.,
|
|
|
|
|
when using an MS-Windows codepage on Unix) add tables to the .aff file
|
2005-06-23 22:36:45 +00:00
|
|
|
|
|spell-affix-chars|. If the .aff file doesn't define a table then the word
|
|
|
|
|
table of the currently active spelling is used. If spelling is not active
|
|
|
|
|
then Vim will try to guess.
|
2005-06-19 22:54:15 +00:00
|
|
|
|
|
2005-06-23 22:36:45 +00:00
|
|
|
|
*:mksp* *:mkspell*
|
|
|
|
|
:mksp[ell][!] [-ascii] {outname} {inname} ...
|
2005-11-26 23:46:11 +00:00
|
|
|
|
Generate a Vim spell file from word lists. Example: >
|
2005-06-30 22:04:15 +00:00
|
|
|
|
:mkspell /tmp/nl nl_NL.words
|
2005-06-23 22:36:45 +00:00
|
|
|
|
< *E751*
|
2005-06-07 21:09:25 +00:00
|
|
|
|
When {outname} ends in ".spl" it is used as the output
|
|
|
|
|
file name. Otherwise it should be a language name,
|
2005-06-23 22:36:45 +00:00
|
|
|
|
such as "en", without the region name. The file
|
|
|
|
|
written will be "{outname}.{encoding}.spl", where
|
|
|
|
|
{encoding} is the value of the 'encoding' option.
|
2005-06-04 22:06:24 +00:00
|
|
|
|
|
2005-06-30 22:04:15 +00:00
|
|
|
|
When the output file already exists [!] must be used
|
2005-06-16 21:59:56 +00:00
|
|
|
|
to overwrite it.
|
|
|
|
|
|
2005-04-17 20:28:32 +00:00
|
|
|
|
When the [-ascii] argument is present, words with
|
|
|
|
|
non-ascii characters are skipped. The resulting file
|
2005-06-07 21:09:25 +00:00
|
|
|
|
ends in "ascii.spl".
|
2005-06-04 22:06:24 +00:00
|
|
|
|
|
|
|
|
|
The input can be the Myspell format files {inname}.aff
|
|
|
|
|
and {inname}.dic. If {inname}.aff does not exist then
|
|
|
|
|
{inname} is used as the file name of a plain word
|
|
|
|
|
list.
|
|
|
|
|
|
2005-04-15 21:13:42 +00:00
|
|
|
|
Multiple {inname} arguments can be given to combine
|
|
|
|
|
regions into one Vim spell file. Example: >
|
|
|
|
|
:mkspell ~/.vim/spell/en /tmp/en_US /tmp/en_CA /tmp/en_AU
|
|
|
|
|
< This combines the English word lists for US, CA and AU
|
|
|
|
|
into one en.spl file.
|
|
|
|
|
Up to eight regions can be combined. *E754* *755*
|
2005-06-13 22:28:56 +00:00
|
|
|
|
The REP and SAL items of the first .aff file where
|
2005-08-23 21:02:42 +00:00
|
|
|
|
they appear are used. |spell-REP| |spell-SAL|
|
2005-04-15 21:13:42 +00:00
|
|
|
|
|
2005-06-22 22:35:10 +00:00
|
|
|
|
This command uses a lot of memory, required to find
|
2005-08-19 20:40:30 +00:00
|
|
|
|
the optimal word tree (Polish, Italian and Hungarian
|
|
|
|
|
require several hundred Mbyte). The final result will
|
|
|
|
|
be much smaller, because compression is used. To
|
|
|
|
|
avoid running out of memory compression will be done
|
|
|
|
|
now and then. This can be tuned with the 'mkspellmem'
|
|
|
|
|
option.
|
2005-06-22 22:35:10 +00:00
|
|
|
|
|
2005-06-30 22:04:15 +00:00
|
|
|
|
After the spell file was written and it was being used
|
|
|
|
|
in a buffer it will be reloaded automatically.
|
2005-06-06 21:59:07 +00:00
|
|
|
|
|
2005-06-27 22:48:21 +00:00
|
|
|
|
:mksp[ell] [-ascii] {name}.{enc}.add
|
|
|
|
|
Like ":mkspell" above, using {name}.{enc}.add as the
|
2005-06-30 22:04:15 +00:00
|
|
|
|
input file and producing an output file in the same
|
|
|
|
|
directory that has ".spl" appended.
|
2005-06-27 22:48:21 +00:00
|
|
|
|
|
|
|
|
|
:mksp[ell] [-ascii] {name}
|
|
|
|
|
Like ":mkspell" above, using {name} as the input file
|
2005-06-30 22:04:15 +00:00
|
|
|
|
and producing an output file in the same directory
|
|
|
|
|
that has ".{enc}.spl" appended.
|
2005-06-07 21:09:25 +00:00
|
|
|
|
|
2005-08-15 21:41:48 +00:00
|
|
|
|
Vim will report the number of duplicate words. This might be a mistake in the
|
|
|
|
|
list of words. But sometimes it is used to have different prefixes and
|
|
|
|
|
suffixes for the same basic word to avoid them combining (e.g. Czech uses
|
2005-08-19 20:40:30 +00:00
|
|
|
|
this). If you want Vim to report all duplicate words set the 'verbose'
|
|
|
|
|
option.
|
2005-08-15 21:41:48 +00:00
|
|
|
|
|
2005-06-07 21:09:25 +00:00
|
|
|
|
Since you might want to change a Myspell word list for use with Vim the
|
|
|
|
|
following procedure is recommended:
|
2005-04-15 21:13:42 +00:00
|
|
|
|
|
|
|
|
|
1. Obtain the xx_YY.aff and xx_YY.dic files from Myspell.
|
|
|
|
|
2. Make a copy of these files to xx_YY.orig.aff and xx_YY.orig.dic.
|
|
|
|
|
3. Change the xx_YY.aff and xx_YY.dic files to remove bad words, add missing
|
2005-04-23 20:52:00 +00:00
|
|
|
|
words, define word characters with FOL/LOW/UPP, etc. The distributed
|
|
|
|
|
"src/spell/*.diff" files can be used.
|
2005-06-30 22:04:15 +00:00
|
|
|
|
4. Start Vim with the right locale and use |:mkspell| to generate the Vim
|
|
|
|
|
spell file.
|
|
|
|
|
5. Try out the spell file with ":set spell spelllang=xx" if you wrote it in
|
2005-07-03 21:39:27 +00:00
|
|
|
|
a spell directory in 'runtimepath', or ":set spelllang=xx.enc.spl" if you
|
2005-06-30 22:04:15 +00:00
|
|
|
|
wrote it somewhere else.
|
2005-04-15 21:13:42 +00:00
|
|
|
|
|
|
|
|
|
When the Myspell files are updated you can merge the differences:
|
2005-04-23 20:52:00 +00:00
|
|
|
|
1. Obtain the new Myspell files as xx_YY.new.aff and xx_UU.new.dic.
|
|
|
|
|
2. Use Vimdiff to see what changed: >
|
2005-04-15 21:13:42 +00:00
|
|
|
|
vimdiff xx_YY.orig.dic xx_YY.new.dic
|
2005-04-23 20:52:00 +00:00
|
|
|
|
3. Take over the changes you like in xx_YY.dic.
|
2005-04-15 21:13:42 +00:00
|
|
|
|
You may also need to change xx_YY.aff.
|
2005-04-23 20:52:00 +00:00
|
|
|
|
4. Rename xx_YY.new.dic to xx_YY.orig.dic and xx_YY.new.aff to xx_YY.new.aff.
|
2005-03-20 22:37:15 +00:00
|
|
|
|
|
2005-06-23 22:36:45 +00:00
|
|
|
|
|
2005-08-19 20:40:30 +00:00
|
|
|
|
SPELL FILE VERSIONS *E770* *E771* *E772*
|
|
|
|
|
|
|
|
|
|
Spell checking is a relatively new feature in Vim, thus it's possible that the
|
|
|
|
|
.spl file format will be changed to support more languages. Vim will check
|
|
|
|
|
the validity of the spell file and report anything wrong.
|
|
|
|
|
|
|
|
|
|
E771: Old spell file, needs to be updated ~
|
|
|
|
|
This spell file is older than your Vim. You need to update the .spl file.
|
|
|
|
|
|
|
|
|
|
E772: Spell file is for newer version of Vim ~
|
|
|
|
|
This means the spell file was made for a later version of Vim. You need to
|
|
|
|
|
update Vim.
|
|
|
|
|
|
|
|
|
|
E770: Unsupported section in spell file ~
|
|
|
|
|
This means the spell file was made for a later version of Vim and contains a
|
|
|
|
|
section that is required for the spell file to work. In this case it's
|
|
|
|
|
probably a good idea to upgrade your Vim.
|
|
|
|
|
|
|
|
|
|
|
2005-06-23 22:36:45 +00:00
|
|
|
|
SPELL FILE DUMP
|
|
|
|
|
|
|
|
|
|
If for some reason you want to check what words are supported by the currently
|
|
|
|
|
used spelling files, use this command:
|
|
|
|
|
|
|
|
|
|
*:spelldump* *:spelld*
|
|
|
|
|
:spelld[ump] Open a new window and fill it with all currently valid
|
2005-08-29 22:25:38 +00:00
|
|
|
|
words. Compound words are not included.
|
2005-06-30 22:04:15 +00:00
|
|
|
|
Note: For some languages the result may be enormous,
|
|
|
|
|
causing Vim to run out of memory.
|
2005-06-23 22:36:45 +00:00
|
|
|
|
|
|
|
|
|
The format of the word list is used |spell-wordlist-format|. You should be
|
|
|
|
|
able to read it with ":mkspell" to generate one .spl file that includes all
|
|
|
|
|
the words.
|
|
|
|
|
|
2005-07-01 22:41:52 +00:00
|
|
|
|
When all entries to 'spelllang' use the same regions or no regions at all then
|
|
|
|
|
the region information is included in the dumped words. Otherwise only words
|
|
|
|
|
for the current region are included and no "/regions" line is generated.
|
2005-06-23 22:36:45 +00:00
|
|
|
|
|
2005-06-30 22:04:15 +00:00
|
|
|
|
Comment lines with the name of the .spl file are used as a header above the
|
|
|
|
|
words that were generated from that .spl file.
|
2005-06-23 22:36:45 +00:00
|
|
|
|
|
2005-04-15 21:13:42 +00:00
|
|
|
|
==============================================================================
|
2005-06-30 22:04:15 +00:00
|
|
|
|
4. Spell file format *spell-file-format*
|
2005-04-15 21:13:42 +00:00
|
|
|
|
|
|
|
|
|
This is the format of the files that are used by the person who creates and
|
|
|
|
|
maintains a word list.
|
|
|
|
|
|
|
|
|
|
Note that we avoid the word "dictionary" here. That is because the goal of
|
|
|
|
|
spell checking differs from writing a dictionary (as in the book). For
|
2005-11-26 23:46:11 +00:00
|
|
|
|
spelling we need a list of words that are OK, thus should not be highlighted.
|
|
|
|
|
Person and company names will not appear in a dictionary, but do appear in a
|
|
|
|
|
word list. And some old words are rarely used while they are common
|
|
|
|
|
misspellings. These do appear in a dictionary but not in a word list.
|
2005-04-15 21:13:42 +00:00
|
|
|
|
|
2005-07-03 21:39:27 +00:00
|
|
|
|
There are two formats: A straight list of words and a list using affix
|
2005-06-30 22:04:15 +00:00
|
|
|
|
compression. The files with affix compression are used by Myspell (Mozilla
|
|
|
|
|
and OpenOffice.org). This requires two files, one with .aff and one with .dic
|
|
|
|
|
extension.
|
2005-06-04 22:06:24 +00:00
|
|
|
|
|
|
|
|
|
|
2005-06-30 22:04:15 +00:00
|
|
|
|
FORMAT OF STRAIGHT WORD LIST *spell-wordlist-format*
|
2005-06-04 22:06:24 +00:00
|
|
|
|
|
2005-06-07 21:09:25 +00:00
|
|
|
|
The words must appear one per line. That is all that is required.
|
2005-06-30 22:04:15 +00:00
|
|
|
|
|
2005-06-07 21:09:25 +00:00
|
|
|
|
Additionally the following items are recognized:
|
2005-06-30 22:04:15 +00:00
|
|
|
|
|
2005-06-04 22:06:24 +00:00
|
|
|
|
- Empty and blank lines are ignored.
|
2005-06-30 22:04:15 +00:00
|
|
|
|
|
2005-06-04 22:06:24 +00:00
|
|
|
|
- Lines starting with a # are ignored (comment lines).
|
2005-06-30 22:04:15 +00:00
|
|
|
|
|
2005-06-06 21:59:07 +00:00
|
|
|
|
- A line starting with "/encoding=", before any word, specifies the encoding
|
|
|
|
|
of the file. After the second '=' comes an encoding name. This tells Vim
|
2005-06-30 22:04:15 +00:00
|
|
|
|
to setup conversion from the specified encoding to 'encoding'. Thus you can
|
|
|
|
|
use one word list for several target encodings.
|
|
|
|
|
|
2005-06-08 22:05:14 +00:00
|
|
|
|
- A line starting with "/regions=" specifies the region names that are
|
|
|
|
|
supported. Each region name must be two ASCII letters. The first one is
|
|
|
|
|
region 1. Thus "/regions=usca" has region 1 "us" and region 2 "ca".
|
2005-06-30 22:04:15 +00:00
|
|
|
|
In an addition word list the region names should be equal to the main word
|
|
|
|
|
list!
|
|
|
|
|
|
2005-06-07 21:09:25 +00:00
|
|
|
|
- Other lines starting with '/' are reserved for future use. The ones that
|
|
|
|
|
are not recognized are ignored (but you do get a warning message).
|
2005-06-04 22:06:24 +00:00
|
|
|
|
|
2005-07-01 22:41:52 +00:00
|
|
|
|
- A "/" may follow the word with the following items:
|
|
|
|
|
= Case must match exactly.
|
|
|
|
|
? Rare word.
|
|
|
|
|
! Bad (wrong) word.
|
|
|
|
|
digit A region in which the word is valid. If no regions are
|
|
|
|
|
specified the word is valid in all regions.
|
|
|
|
|
|
2005-06-08 22:05:14 +00:00
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
# This is an example word list comment
|
|
|
|
|
/encoding=latin1 encoding of the file
|
|
|
|
|
/regions=uscagb regions "us", "ca" and "gb"
|
|
|
|
|
example word for all regions
|
2005-07-01 22:41:52 +00:00
|
|
|
|
blah/12 word for regions "us" and "ca"
|
|
|
|
|
vim/! bad word
|
|
|
|
|
Campbell/?3 rare word in region 3 "gb"
|
|
|
|
|
's mornings/= keep-case word
|
2005-06-08 22:05:14 +00:00
|
|
|
|
|
2005-07-04 22:49:24 +00:00
|
|
|
|
Note that when "/=" is used the same word with all upper-case letters is not
|
|
|
|
|
accepted. This is different from a word with mixed case that is automatically
|
|
|
|
|
marked as keep-case, those words may appear in all upper-case letters.
|
|
|
|
|
|
2005-06-04 22:06:24 +00:00
|
|
|
|
|
|
|
|
|
FORMAT WITH AFFIX COMPRESSION
|
|
|
|
|
|
2005-04-15 21:13:42 +00:00
|
|
|
|
There are two files: the basic word list and an affix file. The affixes are
|
|
|
|
|
used to modify the basic words to get the full word list. This significantly
|
|
|
|
|
reduces the number of words, especially for a language like Polish. This is
|
|
|
|
|
called affix compression.
|
|
|
|
|
|
|
|
|
|
The basic word list and the affix file are combined and turned into a binary
|
|
|
|
|
spell file. All the preprocessing has been done, thus this file loads fast.
|
|
|
|
|
The binary spell file format is described in the source code (src/spell.c).
|
|
|
|
|
But only developers need to know about it.
|
|
|
|
|
|
|
|
|
|
The preprocessing also allows us to take the Myspell language files and modify
|
|
|
|
|
them before the Vim word list is made. The tools for this can be found in the
|
|
|
|
|
"src/spell" directory.
|
|
|
|
|
|
2005-08-23 21:02:42 +00:00
|
|
|
|
The format for the affix and word list files is based on what Myspell uses
|
|
|
|
|
(the spell checker of Mozilla and OpenOffice.org). A description can be found
|
|
|
|
|
here:
|
|
|
|
|
http://lingucomponent.openoffice.org/affix.readme ~
|
|
|
|
|
Note that affixes are case sensitive, this isn't obvious from the description.
|
|
|
|
|
|
|
|
|
|
Vim does not use the TRY item, it is ignored. For making suggestions the
|
|
|
|
|
possible characters in the words are used.
|
|
|
|
|
|
|
|
|
|
Vim supports quite a few extras. They are described below |spell-affix-vim|.
|
|
|
|
|
Attempts have been made to keep this compatible with other spell checkers, so
|
|
|
|
|
that the same files can be used.
|
|
|
|
|
|
2005-04-15 21:13:42 +00:00
|
|
|
|
|
2005-06-08 22:05:14 +00:00
|
|
|
|
WORD LIST FORMAT *spell-dic-format*
|
2005-04-15 21:13:42 +00:00
|
|
|
|
|
|
|
|
|
A very short example, with line numbers:
|
|
|
|
|
|
|
|
|
|
1 1234
|
|
|
|
|
2 aan
|
|
|
|
|
3 Als
|
|
|
|
|
4 Etten-Leur
|
|
|
|
|
5 et al.
|
|
|
|
|
6 's-Gravenhage
|
|
|
|
|
7 's-Gravenhaags
|
|
|
|
|
8 bedel/P
|
|
|
|
|
9 kado/1
|
|
|
|
|
10 cadeau/2
|
2005-08-23 21:02:42 +00:00
|
|
|
|
11 TCP,IP
|
2005-04-15 21:13:42 +00:00
|
|
|
|
|
2005-06-07 21:09:25 +00:00
|
|
|
|
The first line contains the number of words. Vim ignores it, but you do get
|
|
|
|
|
an error message if it's not there. *E760*
|
2005-04-15 21:13:42 +00:00
|
|
|
|
|
2005-06-07 21:09:25 +00:00
|
|
|
|
What follows is one word per line. There should be no white space before or
|
2005-08-24 22:16:11 +00:00
|
|
|
|
after the word. After the word there is an optional slash and flags. Most of
|
|
|
|
|
these flags are letters that indicate the affixes that can be used with this
|
|
|
|
|
word. These are specified with SFX and PFX lines in the .aff file. See the
|
|
|
|
|
Myspell documentation. Vim allows using other flag types with the FLAG item
|
|
|
|
|
in the affix file |spell-FLAG|.
|
2005-04-15 21:13:42 +00:00
|
|
|
|
|
|
|
|
|
When the word only has lower-case letters it will also match with the word
|
|
|
|
|
starting with an upper-case letter.
|
|
|
|
|
|
|
|
|
|
When the word includes an upper-case letter, this means the upper-case letter
|
|
|
|
|
is required at this position. The same word with a lower-case letter at this
|
|
|
|
|
position will not match. When some of the other letters are upper-case it will
|
|
|
|
|
not match either.
|
|
|
|
|
|
2005-06-30 22:04:15 +00:00
|
|
|
|
The word with all upper-case characters will always be OK.
|
2005-04-15 21:13:42 +00:00
|
|
|
|
|
|
|
|
|
word list matches does not match ~
|
|
|
|
|
als als Als ALS ALs AlS aLs aLS
|
|
|
|
|
Als Als ALS als ALs AlS aLs aLS
|
|
|
|
|
ALS ALS als Als ALs AlS aLs aLS
|
|
|
|
|
AlS AlS ALS als Als ALs aLs aLS
|
|
|
|
|
|
2005-12-29 22:51:09 +00:00
|
|
|
|
The KEEPCASE affix ID can be used to specifically match a word with identical
|
|
|
|
|
case only, see below |spell-KEEPCASE|.
|
2005-06-06 21:59:07 +00:00
|
|
|
|
|
2005-04-15 21:13:42 +00:00
|
|
|
|
Note in line 5 to 7 that non-word characters are used. You can include
|
|
|
|
|
any character in a word. When checking the text a word still only matches
|
|
|
|
|
when it appears with a non-word character before and after it. For Myspell a
|
|
|
|
|
word starting with a non-word character probably won't work.
|
|
|
|
|
|
2005-08-23 21:02:42 +00:00
|
|
|
|
In line 12 the word "TCP/IP" is defined. Since the slash has a special
|
|
|
|
|
meaning the comma is used instead. This is defined with the SLASH item in the
|
|
|
|
|
affix file, see |spell-SLASH|. Note that without this SLASH item the
|
|
|
|
|
word will be "TCP,IP".
|
|
|
|
|
|
2005-04-15 21:13:42 +00:00
|
|
|
|
*spell-affix-vim*
|
2005-12-29 22:51:09 +00:00
|
|
|
|
A flag that Vim adds and is not in Myspell is the flag defined with KEEPCASE
|
|
|
|
|
in the affix file. This has the meaning that case matters. This can be used
|
|
|
|
|
if the word does not have the first letter in upper case at the start of a
|
|
|
|
|
sentence. Example (assuming that = was used for KEEPCASE):
|
2005-04-15 21:13:42 +00:00
|
|
|
|
|
2005-07-04 22:49:24 +00:00
|
|
|
|
word list matches does not match ~
|
|
|
|
|
's morgens/= 's morgens 'S morgens 's Morgens 'S MORGENS
|
|
|
|
|
's Morgens 's Morgens 'S MORGENS 'S morgens 's morgens
|
|
|
|
|
|
|
|
|
|
The flag can also be used to avoid that the word matches when it is in all
|
|
|
|
|
upper-case letters.
|
2005-04-15 21:13:42 +00:00
|
|
|
|
|
|
|
|
|
*spell-affix-mbyte*
|
|
|
|
|
The basic word list is normally in an 8-bit encoding, which is mentioned in
|
|
|
|
|
the affix file. The affix file must always be in the same encoding as the
|
|
|
|
|
word list. This is compatible with Myspell. For Vim the encoding may also be
|
|
|
|
|
something else, any encoding that "iconv" supports. The "SET" line must
|
|
|
|
|
specify the name of the encoding. When using a multi-byte encoding it's
|
2005-06-30 22:04:15 +00:00
|
|
|
|
possible to use more different affixes (but Myspell doesn't support that, thus
|
|
|
|
|
you may not want to use it anyway).
|
2005-04-15 21:13:42 +00:00
|
|
|
|
|
2005-06-19 22:54:15 +00:00
|
|
|
|
|
|
|
|
|
CHARACTER TABLES
|
2005-04-23 20:52:00 +00:00
|
|
|
|
*spell-affix-chars*
|
2005-06-07 21:09:25 +00:00
|
|
|
|
When using an 8-bit encoding the affix file should define what characters are
|
|
|
|
|
word characters (as specified with ENC). This is because the system where
|
|
|
|
|
":mkspell" is used may not support a locale with this encoding and isalpha()
|
|
|
|
|
won't work. For example when using "cp1250" on Unix.
|
2005-04-23 20:52:00 +00:00
|
|
|
|
|
2005-08-23 21:02:42 +00:00
|
|
|
|
*E761* *E762* *spell-FOL*
|
|
|
|
|
*spell-LOW* *spell-UPP*
|
2005-04-23 20:52:00 +00:00
|
|
|
|
Three lines in the affix file are needed. Simplistic example:
|
|
|
|
|
|
2005-06-19 22:54:15 +00:00
|
|
|
|
FOL <20><><EFBFBD> ~
|
|
|
|
|
LOW <20><><EFBFBD> ~
|
|
|
|
|
UPP <20><><EFBFBD> ~
|
2005-04-23 20:52:00 +00:00
|
|
|
|
|
|
|
|
|
All three lines must have exactly the same number of characters.
|
|
|
|
|
|
|
|
|
|
The "FOL" line specifies the case-folded characters. These are used to
|
|
|
|
|
compare words while ignoring case. For most encodings this is identical to
|
|
|
|
|
the lower case line.
|
|
|
|
|
|
|
|
|
|
The "LOW" line specifies the characters in lower-case. Mostly it's equal to
|
|
|
|
|
the "FOL" line.
|
|
|
|
|
|
|
|
|
|
The "UPP" line specifies the characters with upper-case. That is, a character
|
|
|
|
|
is upper-case where it's different from the character at the same position in
|
|
|
|
|
"FOL".
|
|
|
|
|
|
2005-08-23 21:02:42 +00:00
|
|
|
|
An exception is made for the German sharp s <20>. The upper-case version is
|
|
|
|
|
"SS". In the FOL/LOW/UPP lines it should be included, so that it's recognized
|
|
|
|
|
as a word character, but use the <20> character in all three.
|
|
|
|
|
|
2005-04-23 20:52:00 +00:00
|
|
|
|
ASCII characters should be omitted, Vim always handles these in the same way.
|
|
|
|
|
When the encoding is UTF-8 no word characters need to be specified.
|
|
|
|
|
|
|
|
|
|
*E763*
|
2005-06-23 22:36:45 +00:00
|
|
|
|
Vim allows you to use spell checking for several languages in the same file.
|
|
|
|
|
You can list them in the 'spelllang' option. As a consequence all spell files
|
|
|
|
|
for the same encoding must use the same word characters, otherwise they can't
|
|
|
|
|
be combined without errors. If you get a warning that the word tables differ
|
|
|
|
|
you may need to generate the .spl file again with |:mkspell|. Check the FOL,
|
|
|
|
|
LOW and UPP lines in the used .aff file.
|
|
|
|
|
|
|
|
|
|
The XX.ascii.spl spell file generated with the "-ascii" argument will not
|
|
|
|
|
contain the table with characters, so that it can be combine with spell files
|
|
|
|
|
for any encoding. The .add.spl files also do not contain the table.
|
2005-04-23 20:52:00 +00:00
|
|
|
|
|
2005-06-19 22:54:15 +00:00
|
|
|
|
|
2005-06-27 22:48:21 +00:00
|
|
|
|
MID-WORD CHARACTERS
|
|
|
|
|
*spell-midword*
|
|
|
|
|
Some characters are only to be considered word characters if they are used in
|
|
|
|
|
between two ordinary word characters. An example is the single quote: It is
|
|
|
|
|
often used to put text in quotes, thus it can't be recognized as a word
|
|
|
|
|
character, but when it appears in between word characters it must be part of
|
|
|
|
|
the word. This is needed to detect a spelling error such as they'are. That
|
|
|
|
|
should be they're, but since "they" and "are" are words themselves that would
|
|
|
|
|
go unnoticed.
|
|
|
|
|
|
|
|
|
|
These characters are defined with MIDWORD in the .aff file:
|
|
|
|
|
|
|
|
|
|
MIDWORD '- ~
|
|
|
|
|
|
|
|
|
|
|
2005-08-24 22:16:11 +00:00
|
|
|
|
FLAG TYPES *spell-FLAG*
|
|
|
|
|
|
|
|
|
|
Flags are used to specify the affixes that can be used with a word and for
|
|
|
|
|
other properties of the word. Normally single-character flags are used. This
|
|
|
|
|
limits the number of possible flags, especially for 8-bit encodings. The FLAG
|
|
|
|
|
item can be used if more affixes are to be used. Possible values:
|
|
|
|
|
|
|
|
|
|
FLAG long use two-character flags
|
|
|
|
|
FLAG num use numbers, from 1 up to 65000
|
2005-08-25 21:27:31 +00:00
|
|
|
|
FLAG caplong use one-character flags without A-Z and two-character
|
2005-08-24 22:16:11 +00:00
|
|
|
|
flags that start with A-Z
|
|
|
|
|
|
|
|
|
|
With "FLAG num" the numbers in a list of affixes need to be separated with a
|
|
|
|
|
comma: "234,2143,1435". This method is inefficient, but useful if the file is
|
|
|
|
|
generated with a program.
|
|
|
|
|
|
2005-08-25 21:27:31 +00:00
|
|
|
|
When using "caplong" the two-character flags all start with a capital: "Aa",
|
|
|
|
|
"B1", "BB", etc. This is useful to use one-character flags for the most
|
|
|
|
|
common items and two-character flags for uncommon items.
|
2005-08-24 22:16:11 +00:00
|
|
|
|
|
|
|
|
|
Note: When using utf-8 only characters up to 65000 may be used for flags.
|
|
|
|
|
|
|
|
|
|
|
2005-06-19 22:54:15 +00:00
|
|
|
|
AFFIXES
|
2005-08-23 21:02:42 +00:00
|
|
|
|
*spell-PFX* *spell-SFX*
|
2005-06-19 22:54:15 +00:00
|
|
|
|
The usual PFX (prefix) and SFX (suffix) lines are supported (see the Myspell
|
2005-06-27 22:48:21 +00:00
|
|
|
|
documentation or the Aspell manual:
|
|
|
|
|
http://aspell.net/man-html/Affix-Compression.html).
|
2005-06-19 22:54:15 +00:00
|
|
|
|
|
2005-06-27 22:48:21 +00:00
|
|
|
|
Note that Myspell ignores any extra text after the relevant info. Vim
|
|
|
|
|
requires this text to start with a "#" so that mistakes don't go unnoticed.
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
SFX F 0 in [^i]n # Spion > Spionin ~
|
|
|
|
|
SFX F 0 nen in # Bauerin > Bauerinnen ~
|
|
|
|
|
|
2005-08-25 21:27:31 +00:00
|
|
|
|
Apparently Myspell allows an affix name to appear more than once. Since this
|
|
|
|
|
might also be a mistake, Vim checks for an extra "S". The affix files for
|
|
|
|
|
Myspell that use this feature apparently have this flag. Example:
|
|
|
|
|
|
|
|
|
|
SFX a Y 1 S ~
|
|
|
|
|
SFX a 0 an . ~
|
|
|
|
|
|
|
|
|
|
SFX a Y 2 S ~
|
|
|
|
|
SFX a 0 en . ~
|
|
|
|
|
SFX a 0 on . ~
|
|
|
|
|
|
2005-08-19 20:40:30 +00:00
|
|
|
|
*spell-affix-rare*
|
2005-06-27 22:48:21 +00:00
|
|
|
|
An extra item for Vim is the "rare" flag. It must come after the other
|
|
|
|
|
fields, before a comment. When used then all words that use the affix will be
|
|
|
|
|
marked as rare words. Example:
|
|
|
|
|
|
|
|
|
|
PFX F 0 nene . rare ~
|
|
|
|
|
SFX F 0 oin n rare # hardly ever used ~
|
|
|
|
|
|
|
|
|
|
However, if the word also appears as a good word in another way it won't be
|
|
|
|
|
marked as rare.
|
2005-06-19 22:54:15 +00:00
|
|
|
|
|
2005-08-19 20:40:30 +00:00
|
|
|
|
*spell-affix-nocomp*
|
|
|
|
|
Another extra item for Vim is the "nocomp" flag. It must come after the other
|
2005-08-21 22:17:52 +00:00
|
|
|
|
fields, before a comment. It can be either before or after "rare". When
|
|
|
|
|
present then all words that use the affix will not be part of a compound word.
|
2005-08-19 20:40:30 +00:00
|
|
|
|
Example:
|
|
|
|
|
affix file:
|
|
|
|
|
COMPOUNDFLAG c ~
|
|
|
|
|
SFX a Y 2 ~
|
|
|
|
|
SFX a 0 s . ~
|
|
|
|
|
SFX a 0 ize . nocomp ~
|
|
|
|
|
dictionary:
|
|
|
|
|
word/c ~
|
|
|
|
|
util/ac ~
|
|
|
|
|
|
|
|
|
|
This allows for "wordutil" and "wordutils" but not "wordutilize".
|
|
|
|
|
|
2005-08-23 21:02:42 +00:00
|
|
|
|
*spell-PFXPOSTPONE*
|
2005-06-19 22:54:15 +00:00
|
|
|
|
When an affix file has very many prefixes that apply to many words it's not
|
|
|
|
|
possible to build the whole word list in memory. This applies to Hebrew (a
|
|
|
|
|
list with all words is over a Gbyte). In that case applying prefixes must be
|
|
|
|
|
postponed. This makes spell checking slower. It is indicated by this keyword
|
|
|
|
|
in the .aff file:
|
2005-06-17 22:00:15 +00:00
|
|
|
|
|
2005-06-19 22:54:15 +00:00
|
|
|
|
PFXPOSTPONE ~
|
|
|
|
|
|
|
|
|
|
Only prefixes without a chop string can be postponed, prefixes with a chop
|
2005-08-01 07:19:10 +00:00
|
|
|
|
string will still be included in the word list. An exception if the chop
|
|
|
|
|
string is one character and equal to the last character of the added string,
|
|
|
|
|
but in lower case. Thus when the chop string is used to allow the following
|
|
|
|
|
word to start with an upper case letter.
|
2005-06-19 22:54:15 +00:00
|
|
|
|
|
2005-08-15 21:41:48 +00:00
|
|
|
|
|
2005-08-23 21:02:42 +00:00
|
|
|
|
WORDS WITH A SLASH *spell-SLASH*
|
2005-08-15 21:41:48 +00:00
|
|
|
|
|
|
|
|
|
The slash is used in the .dic file to separate the basic word from the affix
|
|
|
|
|
letters that can be used. Unfortunately, this means you cannot use a slash in
|
|
|
|
|
a word. Thus "TCP/IP" cannot be a word. To work around that you can define a
|
|
|
|
|
replacement character for the slash. Example:
|
|
|
|
|
|
|
|
|
|
SLASH , ~
|
|
|
|
|
|
|
|
|
|
Now you can use "TCP,IP" to add the word "TCP/IP".
|
|
|
|
|
|
|
|
|
|
Of course, the letter used should itself not appear in any word! The letter
|
|
|
|
|
must be ASCII, thus a single byte.
|
|
|
|
|
|
|
|
|
|
|
2005-12-29 22:51:09 +00:00
|
|
|
|
KEEP-CASE WORDS *spell-KEEPCASE*
|
2005-06-19 22:54:15 +00:00
|
|
|
|
|
2005-12-29 22:51:09 +00:00
|
|
|
|
In the affix file a KEEPCASE line can be used to define the affix name used
|
|
|
|
|
for keep-case words. Example:
|
2005-06-06 21:59:07 +00:00
|
|
|
|
|
2005-12-29 22:51:09 +00:00
|
|
|
|
KEEPCASE = ~
|
2005-06-06 21:59:07 +00:00
|
|
|
|
|
|
|
|
|
See above for an example |spell-affix-vim|.
|
|
|
|
|
|
2005-06-19 22:54:15 +00:00
|
|
|
|
|
2005-12-29 22:51:09 +00:00
|
|
|
|
RARE WORDS *spell-RARE*
|
2005-08-15 21:41:48 +00:00
|
|
|
|
|
2005-12-29 22:51:09 +00:00
|
|
|
|
In the affix file a RARE line can be used to define the affix name used for
|
2005-06-06 21:59:07 +00:00
|
|
|
|
rare words. Example:
|
|
|
|
|
|
2005-12-29 22:51:09 +00:00
|
|
|
|
RARE ? ~
|
2005-06-06 21:59:07 +00:00
|
|
|
|
|
|
|
|
|
Rare words are highlighted differently from bad words. This is to be used for
|
|
|
|
|
words that are correct for the language, but are hardly ever used and could be
|
2005-06-22 22:35:10 +00:00
|
|
|
|
a typing mistake anyway. When the same word is found as good it won't be
|
|
|
|
|
highlighted as rare.
|
|
|
|
|
|
|
|
|
|
|
2005-08-23 21:02:42 +00:00
|
|
|
|
BAD WORDS *spell-BAD*
|
2005-08-15 21:41:48 +00:00
|
|
|
|
|
2005-06-22 22:35:10 +00:00
|
|
|
|
In the affix file a BAD line can be used to define the affix name used for
|
|
|
|
|
bad words. Example:
|
|
|
|
|
|
|
|
|
|
BAD ! ~
|
|
|
|
|
|
|
|
|
|
This can be used to exclude words that would otherwise be good. For example
|
2005-06-27 22:48:21 +00:00
|
|
|
|
"the the" in the .dic file:
|
|
|
|
|
|
|
|
|
|
the the/! ~
|
|
|
|
|
|
|
|
|
|
Once a word has been marked as bad it won't be undone by encountering the same
|
|
|
|
|
word as good.
|
2005-06-06 21:59:07 +00:00
|
|
|
|
|
2005-08-23 21:02:42 +00:00
|
|
|
|
*spell-NEEDAFFIX*
|
2005-08-19 20:40:30 +00:00
|
|
|
|
The NEEDAFFIX flag is used to require that a word is used with an affix. The
|
|
|
|
|
word itself is not a good word. Example:
|
|
|
|
|
|
|
|
|
|
NEEDAFFIX + ~
|
|
|
|
|
|
2005-08-29 22:25:38 +00:00
|
|
|
|
*spell-NEEDCOMPOUND*
|
|
|
|
|
The NEEDCOMPOUND flag is used to require that a word is used as part of a
|
|
|
|
|
compound word The word itself is not a good word. Example:
|
|
|
|
|
|
|
|
|
|
NEEDCOMPOUND & ~
|
|
|
|
|
|
2005-06-06 21:59:07 +00:00
|
|
|
|
|
2005-08-23 21:02:42 +00:00
|
|
|
|
COMPOUND WORDS *spell-compound*
|
2005-08-15 21:41:48 +00:00
|
|
|
|
|
2005-08-19 20:40:30 +00:00
|
|
|
|
A compound word is a longer word made by concatenating words that appear in
|
|
|
|
|
the .dic file. To specify which words may be concatenated a character is
|
|
|
|
|
used. This character is put in the list of affixes after the word. We will
|
|
|
|
|
call this character a flag here. Obviously these flags must be different from
|
|
|
|
|
any affix IDs used.
|
2005-08-15 21:41:48 +00:00
|
|
|
|
|
|
|
|
|
*spell-COMPOUNDFLAG*
|
|
|
|
|
The Myspell compatible method uses one flag, specified with COMPOUNDFLAG.
|
2005-08-19 20:40:30 +00:00
|
|
|
|
All words with this flag combine in any order. This means there is no control
|
|
|
|
|
over which word comes first. Example:
|
2005-08-15 21:41:48 +00:00
|
|
|
|
COMPOUNDFLAG c ~
|
|
|
|
|
|
|
|
|
|
*spell-COMPOUNDFLAGS*
|
2005-08-19 20:40:30 +00:00
|
|
|
|
A more advanced method to specify how compound words can be formed uses
|
|
|
|
|
multiple items with multiple flags. This is not compatible with Myspell 3.0.
|
|
|
|
|
Let's start with an example:
|
|
|
|
|
COMPOUNDFLAGS c+ ~
|
|
|
|
|
COMPOUNDFLAGS se ~
|
|
|
|
|
|
|
|
|
|
The first line defines that words with the "c" flag can be concatenated in any
|
|
|
|
|
order. The second line defines compound words that are made of one word with
|
|
|
|
|
the "s" flag and one word with the "e" flag. With this dictionary:
|
|
|
|
|
bork/c ~
|
|
|
|
|
onion/s ~
|
|
|
|
|
soup/e ~
|
|
|
|
|
|
|
|
|
|
You can make these words:
|
|
|
|
|
bork
|
|
|
|
|
borkbork
|
|
|
|
|
borkborkbork
|
|
|
|
|
(etc.)
|
2005-08-15 21:41:48 +00:00
|
|
|
|
onion
|
|
|
|
|
soup
|
|
|
|
|
onionsoup
|
|
|
|
|
|
2005-08-19 20:40:30 +00:00
|
|
|
|
The COMPOUNDFLAGS item may appear multiple times. The argument is made out of
|
|
|
|
|
one or more groups, where each group can be:
|
|
|
|
|
one flag e.g., c
|
|
|
|
|
alternate flags inside [] e.g., [abc]
|
|
|
|
|
Optionally this may be followed by:
|
|
|
|
|
* the group appears zero or more times, e.g., sm*e
|
|
|
|
|
+ the group appears one or more times, e.g., c+
|
|
|
|
|
|
|
|
|
|
This is similar to the regexp pattern syntax (but not the same!). A few
|
|
|
|
|
examples with the sequence of word flags they require:
|
|
|
|
|
COMPOUNDFLAGS x+ x xx xxx etc.
|
|
|
|
|
COMPOUNDFLAGS yz yz
|
|
|
|
|
COMPOUNDFLAGS x+z xz xxz xxxz etc.
|
|
|
|
|
COMPOUNDFLAGS yx+ yx yxx yxxx etc.
|
|
|
|
|
|
|
|
|
|
COMPOUNDFLAGS [abc]z az bz cz
|
|
|
|
|
COMPOUNDFLAGS [abc]+z az aaz abaz bz baz bcbz cz caz cbaz etc.
|
|
|
|
|
COMPOUNDFLAGS a[xyz]+ ax axx axyz ay ayx ayzz az azy azxy etc.
|
|
|
|
|
COMPOUNDFLAGS sm*e se sme smme smmme etc.
|
|
|
|
|
COMPOUNDFLAGS s[xyz]*e se sxe sxye sxyxe sye syze sze szye szyxe etc.
|
2005-08-15 21:41:48 +00:00
|
|
|
|
|
2005-08-22 22:59:46 +00:00
|
|
|
|
A specific example: Allow a compound to be made of two words and a dash:
|
|
|
|
|
In the .aff file:
|
|
|
|
|
COMPOUNDFLAGS sde ~
|
|
|
|
|
NEEDAFFIX x ~
|
|
|
|
|
COMPOUNDMAX 3 ~
|
|
|
|
|
COMPOUNDMIN 1 ~
|
|
|
|
|
In the .dic file:
|
|
|
|
|
start/s ~
|
|
|
|
|
end/e ~
|
|
|
|
|
-/xd ~
|
|
|
|
|
|
|
|
|
|
This allows for the word "start-end", but not "startend".
|
|
|
|
|
|
2005-08-15 21:41:48 +00:00
|
|
|
|
*spell-COMPOUNDMIN*
|
2005-08-29 22:25:38 +00:00
|
|
|
|
The minimal character length of a word used for compounding is specified with
|
2005-08-15 21:41:48 +00:00
|
|
|
|
COMPOUNDMIN. Example:
|
|
|
|
|
COMPOUNDMIN 5 ~
|
|
|
|
|
|
2005-08-29 22:25:38 +00:00
|
|
|
|
When omitted there is no minimal length. Obviously you could just leave out
|
|
|
|
|
the compound flag from short words instead, this feature is present for
|
|
|
|
|
compatibility with Myspell.
|
2005-08-15 21:41:48 +00:00
|
|
|
|
|
2005-08-19 20:40:30 +00:00
|
|
|
|
*spell-COMPOUNDMAX*
|
|
|
|
|
The maximum number of words that can be concatenated into a compound word is
|
|
|
|
|
specified with COMPOUNDMAX. Example:
|
|
|
|
|
COMPOUNDMAX 3 ~
|
|
|
|
|
|
|
|
|
|
When omitted there is no maximum. It applies to all compound words.
|
|
|
|
|
|
|
|
|
|
To set a limit for words with specific flags make sure the items in
|
|
|
|
|
COMPOUNDFLAGS where they appear don't allow too many words.
|
|
|
|
|
|
|
|
|
|
*spell-COMPOUNDSYLMAX*
|
|
|
|
|
The maximum number of syllables that a compound word may contain is specified
|
|
|
|
|
with COMPOUNDSYLMAX. Example:
|
|
|
|
|
COMPOUNDSYLMAX 6 ~
|
|
|
|
|
|
|
|
|
|
This has no effect if there is no SYLLABLE item. Without COMPOUNDSYLMAX there
|
|
|
|
|
is no limit on the number of syllables.
|
|
|
|
|
|
2005-08-22 22:59:46 +00:00
|
|
|
|
If both COMPOUNDMAX and COMPOUNDSYLMAX are defined, a compound word is
|
|
|
|
|
accepted if it fits one of the criteria, thus is either made from up to
|
|
|
|
|
COMPOUNDMAX words or contains up to COMPOUNDSYLMAX syllables.
|
|
|
|
|
|
2005-08-19 20:40:30 +00:00
|
|
|
|
*spell-SYLLABLE*
|
|
|
|
|
The SYLLABLE item defines characters or character sequences that are used to
|
|
|
|
|
count the number of syllables in a word. Example:
|
|
|
|
|
SYLLABLE a<>e<EFBFBD>i<EFBFBD>o<EFBFBD><6F><EFBFBD>u<EFBFBD><75><EFBFBD>y/aa/au/ea/ee/ei/ie/oa/oe/oo/ou/uu/ui ~
|
|
|
|
|
|
|
|
|
|
Before the first slash is the set of characters that are counted for one
|
|
|
|
|
syllable, also when repeated and mixed, until the next character that is not
|
|
|
|
|
in this set. After the slash come sequences of characters that are counted
|
|
|
|
|
for one syllable. These are preferred over using characters from the set.
|
|
|
|
|
With the example "ideeen" has three syllables, counted by "i", "ee" and "e".
|
|
|
|
|
|
|
|
|
|
Only case-folded letters need to be included.
|
|
|
|
|
|
|
|
|
|
Above another way to restrict compounding was mentioned above: adding "nocomp"
|
|
|
|
|
after an affix causes all words that are made with that affix not be be used
|
|
|
|
|
for compounding. |spell-affix-nocomp|
|
|
|
|
|
|
2005-08-23 21:02:42 +00:00
|
|
|
|
|
|
|
|
|
UNLIMITED COMPOUNDING *spell-NOBREAK*
|
|
|
|
|
|
|
|
|
|
For some languages, such as Thai, there is no space in between words. This
|
|
|
|
|
looks like all words are compounded. To specify this use the NOBREAK item in
|
|
|
|
|
the affix file, without arguments:
|
|
|
|
|
NOBREAK ~
|
|
|
|
|
|
|
|
|
|
Vim will try to figure out where one word ends and a next starts. When there
|
|
|
|
|
are spelling mistakes this may not be quite right.
|
|
|
|
|
|
2005-08-19 20:40:30 +00:00
|
|
|
|
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
|
|
|
|
|
NOTE: The following has not been implemented yet, because there are no word
|
|
|
|
|
lists that support this.
|
|
|
|
|
> *spell-CMP*
|
|
|
|
|
> Sometimes it is necessary to change a word when concatenating it to another,
|
|
|
|
|
> by removing a few letters, inserting something or both. It can also be useful
|
|
|
|
|
> to restrict concatenation to words that match a pattern. For this purpose CMP
|
|
|
|
|
> items can be used. They look like this:
|
|
|
|
|
> CMP {flag} {flags} {strip} {strip2} {add} {cond} {cond2}
|
|
|
|
|
>
|
|
|
|
|
> {flag} the flag, as used in COMPOUNDFLAGS for the lead word
|
|
|
|
|
> {flags} accepted flags for the following word ('.' to accept
|
|
|
|
|
> all)
|
|
|
|
|
> {strip} text to remove from the end of the lead word (zero
|
|
|
|
|
> for no stripping)
|
|
|
|
|
> {strip2} text to remove from the start of the following word
|
|
|
|
|
> (zero for no stripping)
|
|
|
|
|
> {add} text to insert between the words (zero for no
|
|
|
|
|
> addition)
|
|
|
|
|
> {cond} condition to match at the end of the lead word
|
|
|
|
|
> {cond2} condition to match at the start of the following word
|
|
|
|
|
>
|
|
|
|
|
> This is the same as what is used for SFX and PFX items, with the extra {flags}
|
|
|
|
|
> and {cond2} fields. Example:
|
|
|
|
|
> CMP f mrt 0 - . . ~
|
|
|
|
|
>
|
|
|
|
|
> When used with the food and dish word list above, this means that a dash is
|
|
|
|
|
> inserted after each food item. Thus you get "onion-soup" and
|
|
|
|
|
> "onion-tomato-salat".
|
|
|
|
|
>
|
|
|
|
|
> When there are CMP items for a compound flag the concatenation is only done
|
|
|
|
|
> when a CMP item matches.
|
|
|
|
|
>
|
|
|
|
|
> When there are no CMP items for a compound flag, then all words will be
|
|
|
|
|
> concatenated, as if there was an item:
|
|
|
|
|
> CMP {flag} . 0 0 . .
|
|
|
|
|
>
|
|
|
|
|
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
|
2005-08-15 21:41:48 +00:00
|
|
|
|
|
|
|
|
|
|
2005-08-23 21:02:42 +00:00
|
|
|
|
REPLACEMENTS *spell-REP*
|
2005-06-13 22:28:56 +00:00
|
|
|
|
|
|
|
|
|
In the affix file REP items can be used to define common mistakes. This is
|
|
|
|
|
used to make spelling suggestions. The items define the "from" text and the
|
|
|
|
|
"to" replacement. Example:
|
|
|
|
|
|
|
|
|
|
REP 4 ~
|
|
|
|
|
REP f ph ~
|
|
|
|
|
REP ph f ~
|
|
|
|
|
REP k ch ~
|
|
|
|
|
REP ch k ~
|
|
|
|
|
|
2005-08-24 22:16:11 +00:00
|
|
|
|
The first line specifies the number of REP lines following. Vim ignores the
|
|
|
|
|
number, but it must be there.
|
|
|
|
|
|
2005-06-30 22:04:15 +00:00
|
|
|
|
Don't include simple one-character replacements or swaps. Vim will try these
|
|
|
|
|
anyway. You can include whole words if you want to, but you might want to use
|
|
|
|
|
the "file:" item in 'spellsuggest' instead.
|
2005-06-13 22:28:56 +00:00
|
|
|
|
|
2005-09-25 22:16:38 +00:00
|
|
|
|
You can include a space by using an underscore:
|
|
|
|
|
|
|
|
|
|
REP the_the the ~
|
|
|
|
|
|
2005-06-13 22:28:56 +00:00
|
|
|
|
|
2005-08-23 21:02:42 +00:00
|
|
|
|
SIMILAR CHARACTERS *spell-MAP*
|
2005-06-13 22:28:56 +00:00
|
|
|
|
|
2005-06-30 22:04:15 +00:00
|
|
|
|
In the affix file MAP items can be used to define letters that are very much
|
2005-06-13 22:28:56 +00:00
|
|
|
|
alike. This is mostly used for a letter with different accents. This is used
|
|
|
|
|
to prefer suggestions with these letters substituted. Example:
|
|
|
|
|
|
|
|
|
|
MAP 2 ~
|
|
|
|
|
MAP e<><65><EFBFBD><EFBFBD> ~
|
|
|
|
|
MAP u<><75><EFBFBD><EFBFBD> ~
|
|
|
|
|
|
2005-08-24 22:16:11 +00:00
|
|
|
|
The first line specifies the number of MAP lines following. Vim ignores the
|
|
|
|
|
number, but the line must be there.
|
2005-06-13 22:28:56 +00:00
|
|
|
|
|
2005-06-30 22:04:15 +00:00
|
|
|
|
Each letter must appear in only one of the MAP items. It's a bit more
|
|
|
|
|
efficient if the first letter is ASCII or at least one without accents.
|
2005-06-17 22:00:15 +00:00
|
|
|
|
|
2005-06-13 22:28:56 +00:00
|
|
|
|
|
2005-08-23 21:02:42 +00:00
|
|
|
|
SOUND-A-LIKE *spell-SAL*
|
2005-06-13 22:28:56 +00:00
|
|
|
|
|
|
|
|
|
In the affix file SAL items can be used to define the sounds-a-like mechanism
|
|
|
|
|
to be used. The main items define the "from" text and the "to" replacement.
|
2005-06-30 22:04:15 +00:00
|
|
|
|
Simplistic example:
|
2005-06-13 22:28:56 +00:00
|
|
|
|
|
|
|
|
|
SAL CIA X ~
|
|
|
|
|
SAL CH X ~
|
|
|
|
|
SAL C K ~
|
|
|
|
|
SAL K K ~
|
|
|
|
|
|
2005-07-03 21:39:27 +00:00
|
|
|
|
There are a few rules and this can become quite complicated. An explanation
|
2005-06-30 22:04:15 +00:00
|
|
|
|
how it works can be found in the Aspell manual:
|
2005-06-29 22:40:58 +00:00
|
|
|
|
http://aspell.net/man-html/Phonetic-Code.html.
|
2005-06-13 22:28:56 +00:00
|
|
|
|
|
|
|
|
|
There are a few special items:
|
|
|
|
|
|
|
|
|
|
SAL followup true ~
|
|
|
|
|
SAL collapse_result true ~
|
|
|
|
|
SAL remove_accents true ~
|
|
|
|
|
|
|
|
|
|
"1" has the same meaning as "true". Any other value means "false".
|
|
|
|
|
|
2005-06-29 22:40:58 +00:00
|
|
|
|
|
2005-08-23 21:02:42 +00:00
|
|
|
|
SIMPLE SOUNDFOLDING *spell-SOFOFROM* *spell-SOFOTO*
|
2005-06-29 22:40:58 +00:00
|
|
|
|
|
|
|
|
|
The SAL mechanism is complex and slow. A simpler mechanism is mapping all
|
|
|
|
|
characters to another character, mapping similar sounding characters to the
|
|
|
|
|
same character. At the same time this does case folding. You can not have
|
2005-06-30 22:04:15 +00:00
|
|
|
|
both SAL items and simple soundfolding.
|
2005-06-29 22:40:58 +00:00
|
|
|
|
|
2005-07-03 21:39:27 +00:00
|
|
|
|
There are two items required: one to specify the characters that are mapped
|
2005-06-29 22:40:58 +00:00
|
|
|
|
and one that specifies the characters they are mapped to. They must have
|
|
|
|
|
exactly the same number of characters. Example:
|
|
|
|
|
|
|
|
|
|
SOFOFROM abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ ~
|
|
|
|
|
SOFOTO ebctefghejklnnepkrstevvkesebctefghejklnnepkrstevvkes ~
|
|
|
|
|
|
|
|
|
|
In the example all vowels are mapped to the same character 'e'. Another
|
2005-06-30 22:04:15 +00:00
|
|
|
|
method would be to leave out all vowels. Some characters that sound nearly
|
|
|
|
|
the same and are often mixed up, such as 'm' and 'n', are mapped to the same
|
|
|
|
|
character. Don't do this too much, all words will start looking alike.
|
2005-06-29 22:40:58 +00:00
|
|
|
|
|
|
|
|
|
Characters that do not appear in SOFOFROM will be left out, except that all
|
|
|
|
|
white space is replaced by one space. Sequences of the same character in
|
|
|
|
|
SOFOFROM are replaced by one.
|
|
|
|
|
|
|
|
|
|
You can use the |soundfold()| function to try out the results. Or set the
|
2005-12-10 20:23:46 +00:00
|
|
|
|
'verbose' option to see the score in the output of the |z=| command.
|
2005-06-29 22:40:58 +00:00
|
|
|
|
|
|
|
|
|
|
2005-03-20 22:37:15 +00:00
|
|
|
|
vim:tw=78:sw=4:ts=8:ft=help:norl:
|