xref: /vim-8.2.3635/runtime/doc/spell.txt (revision d2ea7cf1)
1*spell.txt*	For Vim version 8.2.  Last change: 2020 Aug 15
2
3
4		  VIM REFERENCE MANUAL	  by Bram Moolenaar
5
6
7Spell checking						*spell*
8
91. Quick start			|spell-quickstart|
102. Remarks on spell checking	|spell-remarks|
113. Generating a spell file	|spell-mkspell|
124. Spell file format		|spell-file-format|
13
14{not available when the |+syntax| feature has been disabled at compile time}
15
16Note: There also is a vimspell plugin.  If you have it you can do ":help
17vimspell" to find about it.  But you will probably want to get rid of the
18plugin and use the 'spell' option instead, it works better.
19
20==============================================================================
211. Quick start					*spell-quickstart* *E756*
22
23This command switches on spell checking: >
24
25	:setlocal spell spelllang=en_us
26
27This switches on the 'spell' option and specifies to check for US English.
28
29The words that are not recognized are highlighted with one of these:
30	SpellBad	word not recognized			|hl-SpellBad|
31	SpellCap	word not capitalised			|hl-SpellCap|
32	SpellRare	rare word				|hl-SpellRare|
33	SpellLocal	wrong spelling for selected region	|hl-SpellLocal|
34
35Vim only checks words for spelling, there is no grammar check.
36
37If the 'mousemodel' option is set to "popup" and the cursor is on a badly
38spelled word or it is "popup_setpos" and the mouse pointer is on a badly
39spelled word, then the popup menu will contain a submenu to replace the bad
40word.  Note: this slows down the appearance of the popup menu.  Note for GTK:
41don't release the right mouse button until the menu appears, otherwise it
42won't work.
43
44To search for the next misspelled word:
45
46							*]s*
47]s			Move to next misspelled word after the cursor.
48			A count before the command can be used to repeat.
49			'wrapscan' applies.
50
51							*[s*
52[s			Like "]s" but search backwards, find the misspelled
53			word before the cursor.  Doesn't recognize words
54			split over two lines, thus may stop at words that are
55			not highlighted as bad.  Does not stop at word with
56			missing capital at the start of a line.
57
58							*]S*
59]S			Like "]s" but only stop at bad words, not at rare
60			words or words for another region.
61
62							*[S*
63[S			Like "]S" but search backwards.
64
65
66To add words to your own word list:
67
68							*zg*
69zg			Add word under the cursor as a good word to the first
70			name in 'spellfile'.  A count may precede the command
71			to indicate the entry in 'spellfile' to be used.  A
72			count of two uses the second entry.
73
74			In Visual mode the selected characters are added as a
75			word (including white space!).
76			When the cursor is on text that is marked as badly
77			spelled then the marked text is used.
78			Otherwise the word under the cursor, separated by
79			non-word characters, is used.
80
81			If the word is explicitly marked as bad word in
82			another spell file the result is unpredictable.
83
84							*zG*
85zG			Like "zg" but add the word to the internal word list
86			|internal-wordlist|.
87
88							*zw*
89zw			Like "zg" but mark the word as a wrong (bad) word.
90			If the word already appears in 'spellfile' it is
91			turned into a comment line.  See |spellfile-cleanup|
92			for getting rid of those.
93
94							*zW*
95zW			Like "zw" but add the word to the internal word list
96			|internal-wordlist|.
97
98zuw							*zug* *zuw*
99zug			Undo |zw| and |zg|, remove the word from the entry in
100			'spellfile'.  Count used as with |zg|.
101
102zuW							*zuG* *zuW*
103zuG			Undo |zW| and |zG|, remove the word from the internal
104			word list.  Count used as with |zg|.
105
106							*:spe* *:spellgood*
107:[count]spe[llgood] {word}
108			Add {word} as a good word to 'spellfile', like with
109			|zg|.  Without count the first name is used, with a
110			count of two the second entry, etc.
111
112:spe[llgood]! {word}	Add {word} as a good word to the internal word list,
113			like with |zG|.
114
115							*:spellw* *:spellwrong*
116:[count]spellw[rong] {word}
117			Add {word} as a wrong (bad) word to 'spellfile', as
118			with |zw|.  Without count the first name is used, with
119			a count of two the second entry, etc.
120
121:spellw[rong]! {word}	Add {word} as a wrong (bad) word to the internal word
122			list, like with |zW|.
123
124							*:spellra* *:spellrare*
125:[count]spellr[are] {word}
126			Add {word} as a rare word to 'spellfile', similar to
127			|zw|.  Without count the first name is used, with
128			a count of two the second entry, etc.
129
130			There are no normal mode commands to mark words as
131			rare as this is a fairly uncommon command and all
132			intuitive commands for this are already taken. If you
133			want you can add mappings with e.g.: >
134		nnoremap z?  :exe ':spellrare  ' . expand('<cWORD>')<CR>
135		nnoremap z/  :exe ':spellrare! ' . expand('<cWORD>')<CR>
136<			|:spellundo|, |zuw|, or |zuW| can be used to undo this.
137
138:spellr[rare]! {word}	Add {word} as a rare word to the internal word
139			list, similar to |zW|.
140
141:[count]spellu[ndo] {word}				*:spellu* *:spellundo*
142			Like |zuw|.  [count] used as with |:spellgood|.
143
144:spellu[ndo]! {word}	Like |zuW|.  [count] used as with |:spellgood|.
145
146
147After adding a word to 'spellfile' with the above commands its associated
148".spl" file will automatically be updated and reloaded.  If you change
149'spellfile' manually you need to use the |:mkspell| command.  This sequence of
150commands mostly works well: >
151	:edit <file in 'spellfile'>
152<	(make changes to the spell file) >
153	:mkspell! %
154
155More details about the 'spellfile' format below |spell-wordlist-format|.
156
157							*internal-wordlist*
158The internal word list is used for all buffers where 'spell' is set.  It is
159not stored, it is lost when you exit Vim.  It is also cleared when 'encoding'
160is set.
161
162
163Finding suggestions for bad words:
164							*z=*
165z=			For the word under/after the cursor suggest correctly
166			spelled words.  This also works to find alternatives
167			for a word that is not highlighted as a bad word,
168			e.g., when the word after it is bad.
169			In Visual mode the highlighted text is taken as the
170			word to be replaced.
171			The results are sorted on similarity to the word being
172			replaced.
173			This may take a long time.  Hit CTRL-C when you get
174			bored.
175
176			If the command is used without a count the
177			alternatives are listed and you can enter the number
178			of your choice or press <Enter> if you don't want to
179			replace.  You can also use the mouse to click on your
180			choice (only works if the mouse can be used in Normal
181			mode and when there are no line wraps).  Click on the
182			first line (the header) to cancel.
183
184			The suggestions listed normally replace a highlighted
185			bad word.  Sometimes they include other text, in that
186			case the replaced text is also listed after a "<".
187
188			If a count is used that suggestion is used, without
189			prompting.  For example, "1z=" always takes the first
190			suggestion.
191
192			If 'verbose' is non-zero a score will be displayed
193			with the suggestions to indicate the likeliness to the
194			badly spelled word (the higher the score the more
195			different).
196			When a word was replaced the redo command "." will
197			repeat the word replacement.  This works like "ciw",
198			the good word and <Esc>.  This does NOT work for Thai
199			and other languages without spaces between words.
200
201					*:spellr* *:spellrepall* *E752* *E753*
202:spellr[epall]		Repeat the replacement done by |z=| for all matches
203			with the replaced word in the current window.
204
205In Insert mode, when the cursor is after a badly spelled word, you can use
206CTRL-X s to find suggestions.  This works like Insert mode completion.  Use
207CTRL-N to use the next suggestion, CTRL-P to go back. |i_CTRL-X_s|
208
209The 'spellsuggest' option influences how the list of suggestions is generated
210and sorted.  See |'spellsuggest'|.
211
212The 'spellcapcheck' option is used to check the first word of a sentence
213starts with a capital.  This doesn't work for the first word in the file.
214When there is a line break right after a sentence the highlighting of the next
215line may be postponed.  Use |CTRL-L| when needed.  Also see |set-spc-auto| for
216how it can be set automatically when 'spelllang' is set.
217
218The 'spelloptions' option has a few more flags that influence the way spell
219checking works.
220
221Vim counts the number of times a good word is encountered.  This is used to
222sort the suggestions: words that have been seen before get a small bonus,
223words that have been seen often get a bigger bonus.  The COMMON item in the
224affix file can be used to define common words, so that this mechanism also
225works in a new or short file |spell-COMMON|.
226
227==============================================================================
2282. Remarks on spell checking				*spell-remarks*
229
230PERFORMANCE
231
232Vim does on-the-fly spell checking.  To make this work fast the word list is
233loaded in memory.  Thus this uses a lot of memory (1 Mbyte or more).  There
234might also be a noticeable delay when the word list is loaded, which happens
235when 'spell' is set and when 'spelllang' is set while 'spell' was already set.
236To minimize the delay each word list is only loaded once, it is not deleted
237when 'spelllang' is made empty or 'spell' is reset.  When 'encoding' is set
238all the word lists are reloaded, thus you may notice a delay then too.
239
240
241REGIONS
242
243A word may be spelled differently in various regions.  For example, English
244comes in (at least) these variants:
245
246	en		all regions
247	en_au		Australia
248	en_ca		Canada
249	en_gb		Great Britain
250	en_nz		New Zealand
251	en_us		USA
252
253Words that are not used in one region but are used in another region are
254highlighted with SpellLocal |hl-SpellLocal|.
255
256Always use lowercase letters for the language and region names.
257
258When adding a word with |zg| or another command it's always added for all
259regions.  You can change that by manually editing the 'spellfile'.  See
260|spell-wordlist-format|.  Note that the regions as specified in the files in
261'spellfile' are only used when all entries in 'spelllang' specify the same
262region (not counting files specified by their .spl name).
263
264							*spell-german*
265Specific exception: For German these special regions are used:
266	de		all German words accepted
267	de_de		old and new spelling
268	de_19		old spelling
269	de_20		new spelling
270	de_at		Austria
271	de_ch		Switzerland
272
273							*spell-russian*
274Specific exception: For Russian these special regions are used:
275	ru		all Russian words accepted
276	ru_ru		"IE" letter spelling
277	ru_yo		"YO" letter spelling
278
279							*spell-yiddish*
280Yiddish requires using "utf-8" encoding, because of the special characters
281used.  If you are using latin1 Vim will use transliterated (romanized) Yiddish
282instead.  If you want to use transliterated Yiddish with utf-8 use "yi-tr".
283In a table:
284	'encoding'	'spelllang'
285	utf-8		yi		Yiddish
286	latin1		yi		transliterated Yiddish
287	utf-8		yi-tr		transliterated Yiddish
288
289							*spell-cjk*
290Chinese, Japanese and other East Asian characters are normally marked as
291errors, because spell checking of these characters is not supported. If
292'spelllang' includes "cjk", these characters are not marked as errors.  This
293is useful when editing text with spell checking while some Asian words are
294present.
295
296
297SPELL FILES						*spell-load*
298
299Vim searches for spell files in the "spell" subdirectory of the directories in
300'runtimepath'.  The name is: LL.EEE.spl, where:
301	LL	the language name
302	EEE	the value of 'encoding'
303
304The value for "LL" comes from 'spelllang', but excludes the region name.
305Examples:
306	'spelllang'	LL ~
307	en_us		en
308	en-rare		en-rare
309	medical_ca	medical
310
311Only the first file is loaded, the one that is first in 'runtimepath'.  If
312this succeeds then additionally files with the name LL.EEE.add.spl are loaded.
313All the ones that are found are used.
314
315If no spell file is found the |SpellFileMissing| autocommand event is
316triggered.  This may trigger the |spellfile.vim| plugin to offer you
317downloading the spell file.
318
319Additionally, the files related to the names in 'spellfile' are loaded.  These
320are the files that |zg| and |zw| add good and wrong words to.
321
322Exceptions:
323- Vim uses "latin1" when 'encoding' is "iso-8859-15".  The euro sign doesn't
324  matter for spelling.
325- When no spell file for 'encoding' is found "ascii" is tried.  This only
326  works for languages where nearly all words are ASCII, such as English.  It
327  helps when 'encoding' is not "latin1", such as iso-8859-2, and English text
328  is being edited.  For the ".add" files the same name as the found main
329  spell file is used.
330
331For example, with these values:
332	'runtimepath' is "~/.vim,/usr/share/vim82,~/.vim/after"
333	'encoding'    is "iso-8859-2"
334	'spelllang'   is "pl"
335
336Vim will look for:
3371. ~/.vim/spell/pl.iso-8859-2.spl
3382. /usr/share/vim82/spell/pl.iso-8859-2.spl
3393. ~/.vim/spell/pl.iso-8859-2.add.spl
3404. /usr/share/vim82/spell/pl.iso-8859-2.add.spl
3415. ~/.vim/after/spell/pl.iso-8859-2.add.spl
342
343This assumes 1. is not found and 2. is found.
344
345If 'encoding' is "latin1" Vim will look for:
3461. ~/.vim/spell/pl.latin1.spl
3472. /usr/share/vim82/spell/pl.latin1.spl
3483. ~/.vim/after/spell/pl.latin1.spl
3494. ~/.vim/spell/pl.ascii.spl
3505. /usr/share/vim82/spell/pl.ascii.spl
3516. ~/.vim/after/spell/pl.ascii.spl
352
353This assumes none of them are found (Polish doesn't make sense when leaving
354out the non-ASCII characters).
355
356Spelling for EBCDIC is currently not supported.
357
358A spell file might not be available in the current 'encoding'.  See
359|spell-mkspell| about how to create a spell file.  Converting a spell file
360with "iconv" will NOT work!
361
362Note: on VMS ".{enc}.spl" is changed to "_{enc}.spl" to avoid trouble with
363filenames.
364
365						    *spell-sug-file* *E781*
366If there is a file with exactly the same name as the ".spl" file but ending in
367".sug", that file will be used for giving better suggestions.  It isn't loaded
368before suggestions are made to reduce memory use.
369
370				    *E758* *E759* *E778* *E779* *E780* *E782*
371When loading a spell file Vim checks that it is properly formatted.  If you
372get an error the file may be truncated, modified or intended for another Vim
373version.
374
375
376SPELLFILE CLEANUP					*spellfile-cleanup*
377
378The |zw| command turns existing entries in 'spellfile' into comment lines.
379This avoids having to write a new file every time, but results in the file
380only getting longer, never shorter.  To clean up the comment lines in all
381".add" spell files do this: >
382	:runtime spell/cleanadd.vim
383
384This deletes all comment lines, except the ones that start with "##".  Use
385"##" lines to add comments that you want to keep.
386
387You can invoke this script as often as you like.  A variable is provided to
388skip updating files that have been changed recently.  Set it to the number of
389seconds that has passed since a file was changed before it will be cleaned.
390For example, to clean only files that were not changed in the last hour: >
391      let g:spell_clean_limit = 60 * 60
392The default is one second.
393
394
395WORDS
396
397Vim uses a fixed method to recognize a word.  This is independent of
398'iskeyword', so that it also works in help files and for languages that
399include characters like '-' in 'iskeyword'.  The word characters do depend on
400'encoding'.
401
402The table with word characters is stored in the main .spl file.  Therefore it
403matters what the current locale is when generating it!  A .add.spl file does
404not contain a word table though.
405
406For a word that starts with a digit the digit is ignored, unless the word as a
407whole is recognized.  Thus if "3D" is a word and "D" is not then "3D" is
408recognized as a word, but if "3D" is not a word then only the "D" is marked as
409bad.  Hex numbers in the form 0x12ab and 0X12AB are recognized.
410
411
412WORD COMBINATIONS
413
414It is possible to spell-check words that include a space.  This is used to
415recognize words that are invalid when used by themselves, e.g. for "et al.".
416It can also be used to recognize "the the" and highlight it.
417
418The number of spaces is irrelevant.  In most cases a line break may also
419appear.  However, this makes it difficult to find out where to start checking
420for spelling mistakes.  When you make a change to one line and only that line
421is redrawn Vim won't look in the previous line, thus when "et" is at the end
422of the previous line "al." will be flagged as an error.  And when you type
423"the<CR>the" the highlighting doesn't appear until the first line is redrawn.
424Use |CTRL-L| to redraw right away.  "[s" will also stop at a word combination
425with a line break.
426
427When encountering a line break Vim skips characters such as '*', '>' and '"',
428so that comments in C, shell and Vim code can be spell checked.
429
430
431SYNTAX HIGHLIGHTING					*spell-syntax*
432
433Files that use syntax highlighting can specify where spell checking should be
434done:
435
4361.  everywhere			   default
4372.  in specific items		   use "contains=@Spell"
4383.  everywhere but specific items  use "contains=@NoSpell"
439
440For the second method adding the @NoSpell cluster will disable spell checking
441again.  This can be used, for example, to add @Spell to the comments of a
442program, and add @NoSpell for items that shouldn't be checked.
443Also see |:syn-spell| for text that is not in a syntax item.
444
445
446VIM SCRIPTS
447
448If you want to write a Vim script that does something with spelling, you may
449find these functions useful:
450
451    spellbadword()	find badly spelled word at the cursor
452    spellsuggest()	get list of spelling suggestions
453    soundfold()		get the sound-a-like version of a word
454
455
456SETTING 'spellcapcheck' AUTOMATICALLY			*set-spc-auto*
457
458After the 'spelllang' option has been set successfully, Vim will source the
459files "spell/LANG.vim" in 'runtimepath'.  "LANG" is the value of 'spelllang'
460up to the first comma, dot or underscore.  This can be used to set options
461specifically for the language, especially 'spellcapcheck'.
462
463The distribution includes a few of these files.  Use this command to see what
464they do: >
465	:next $VIMRUNTIME/spell/*.vim
466
467Note that the default scripts don't set 'spellcapcheck' if it was changed from
468the default value.  This assumes the user prefers another value then.
469
470
471DOUBLE SCORING						*spell-double-scoring*
472
473The 'spellsuggest' option can be used to select "double" scoring.  This
474mechanism is based on the principle that there are two kinds of spelling
475mistakes:
476
4771. You know how to spell the word, but mistype something.  This results in a
478   small editing distance (character swapped/omitted/inserted) and possibly a
479   word that sounds completely different.
480
4812. You don't know how to spell the word and type something that sounds right.
482   The edit distance can be big but the word is similar after sound-folding.
483
484Since scores for these two mistakes will be very different we use a list
485for each and mix them.
486
487The sound-folding is slow and people that know the language won't make the
488second kind of mistakes.  Therefore 'spellsuggest' can be set to select the
489preferred method for scoring the suggestions.
490
491==============================================================================
4923. Generating a spell file				*spell-mkspell*
493
494Vim uses a binary file format for spelling.  This greatly speeds up loading
495the word list and keeps it small.
496						    *.aff* *.dic* *Myspell*
497You can create a Vim spell file from the .aff and .dic files that Myspell
498uses.  Myspell is used by OpenOffice.org and Mozilla. The OpenOffice .oxt
499files are zip files which contain the .aff and .dic files. You should be able
500to find them here:
501	http://extensions.services.openoffice.org/dictionary
502The older, OpenOffice 2 files may be used if this doesn't work:
503	http://wiki.services.openoffice.org/wiki/Dictionaries
504You can also use a plain word list.  The results are the same, the choice
505depends on what word lists you can find.
506
507If you install Aap (from www.a-a-p.org) you can use the recipes in the
508runtime/spell/??/ directories.  Aap will take care of downloading the files,
509apply patches needed for Vim and build the .spl file.
510
511Make sure your current locale is set properly, otherwise Vim doesn't know what
512characters are upper/lower case letters.  If the locale isn't available (e.g.,
513when using an MS-Windows codepage on Unix) add tables to the .aff file
514|spell-affix-chars|.  If the .aff file doesn't define a table then the word
515table of the currently active spelling is used.  If spelling is not active
516then Vim will try to guess.
517
518							*:mksp* *:mkspell*
519:mksp[ell][!] [-ascii] {outname} {inname} ...
520			Generate a Vim spell file from word lists.  Example: >
521		:mkspell /tmp/nl nl_NL.words
522<								*E751*
523			When {outname} ends in ".spl" it is used as the output
524			file name.  Otherwise it should be a language name,
525			such as "en", without the region name.  The file
526			written will be "{outname}.{encoding}.spl", where
527			{encoding} is the value of the 'encoding' option.
528
529			When the output file already exists [!] must be used
530			to overwrite it.
531
532			When the [-ascii] argument is present, words with
533			non-ascii characters are skipped.  The resulting file
534			ends in "ascii.spl".
535
536			The input can be the Myspell format files {inname}.aff
537			and {inname}.dic.  If {inname}.aff does not exist then
538			{inname} is used as the file name of a plain word
539			list.
540
541			Multiple {inname} arguments can be given to combine
542			regions into one Vim spell file.  Example: >
543		:mkspell ~/.vim/spell/en /tmp/en_US /tmp/en_CA /tmp/en_AU
544<			This combines the English word lists for US, CA and AU
545			into one en.spl file.
546			Up to eight regions can be combined. *E754* *E755*
547			The REP and SAL items of the first .aff file where
548			they appear are used. |spell-REP| |spell-SAL|
549								*E845*
550			This command uses a lot of memory, required to find
551			the optimal word tree (Polish, Italian and Hungarian
552			require several hundred Mbyte).  The final result will
553			be much smaller, because compression is used.  To
554			avoid running out of memory compression will be done
555			now and then.  This can be tuned with the 'mkspellmem'
556			option.
557
558			After the spell file was written and it was being used
559			in a buffer it will be reloaded automatically.
560
561:mksp[ell] [-ascii] {name}.{enc}.add
562			Like ":mkspell" above, using {name}.{enc}.add as the
563			input file and producing an output file in the same
564			directory that has ".spl" appended.
565
566:mksp[ell] [-ascii] {name}
567			Like ":mkspell" above, using {name} as the input file
568			and producing an output file in the same directory
569			that has ".{enc}.spl" appended.
570
571Vim will report the number of duplicate words.  This might be a mistake in the
572list of words.  But sometimes it is used to have different prefixes and
573suffixes for the same basic word to avoid them combining (e.g. Czech uses
574this).  If you want Vim to report all duplicate words set the 'verbose'
575option.
576
577Since you might want to change a Myspell word list for use with Vim the
578following procedure is recommended:
579
5801. Obtain the xx_YY.aff and xx_YY.dic files from Myspell.
5812. Make a copy of these files to xx_YY.orig.aff and xx_YY.orig.dic.
5823. Change the xx_YY.aff and xx_YY.dic files to remove bad words, add missing
583   words, define word characters with FOL/LOW/UPP, etc.  The distributed
584   "*.diff" files can be used.
5854. Start Vim with the right locale and use |:mkspell| to generate the Vim
586   spell file.
5875. Try out the spell file with ":set spell spelllang=xx" if you wrote it in
588   a spell directory in 'runtimepath', or ":set spelllang=xx.enc.spl" if you
589   wrote it somewhere else.
590
591When the Myspell files are updated you can merge the differences:
5921. Obtain the new Myspell files as xx_YY.new.aff and xx_UU.new.dic.
5932. Use Vimdiff to see what changed: >
594	vimdiff xx_YY.orig.dic xx_YY.new.dic
5953. Take over the changes you like in xx_YY.dic.
596   You may also need to change xx_YY.aff.
5974. Rename xx_YY.new.dic to xx_YY.orig.dic and xx_YY.new.aff to xx_YY.orig.aff.
598
599
600SPELL FILE VERSIONS					*E770* *E771* *E772*
601
602Spell checking is a relatively new feature in Vim, thus it's possible that the
603.spl file format will be changed to support more languages.  Vim will check
604the validity of the spell file and report anything wrong.
605
606	E771: Old spell file, needs to be updated ~
607This spell file is older than your Vim.  You need to update the .spl file.
608
609	E772: Spell file is for newer version of Vim ~
610This means the spell file was made for a later version of Vim.  You need to
611update Vim.
612
613	E770: Unsupported section in spell file ~
614This means the spell file was made for a later version of Vim and contains a
615section that is required for the spell file to work.  In this case it's
616probably a good idea to upgrade your Vim.
617
618
619SPELL FILE DUMP
620
621If for some reason you want to check what words are supported by the currently
622used spelling files, use this command:
623
624							*:spelldump* *:spelld*
625:spelld[ump]		Open a new window and fill it with all currently valid
626			words.  Compound words are not included.
627			Note: For some languages the result may be enormous,
628			causing Vim to run out of memory.
629
630:spelld[ump]!		Like ":spelldump" and include the word count.  This is
631			the number of times the word was found while
632			updating the screen.  Words that are in COMMON items
633			get a starting count of 10.
634
635The format of the word list is used |spell-wordlist-format|.  You should be
636able to read it with ":mkspell" to generate one .spl file that includes all
637the words.
638
639When all entries to 'spelllang' use the same regions or no regions at all then
640the region information is included in the dumped words.  Otherwise only words
641for the current region are included and no "/regions" line is generated.
642
643Comment lines with the name of the .spl file are used as a header above the
644words that were generated from that .spl file.
645
646
647SPELL FILE MISSING		*spell-SpellFileMissing* *spellfile.vim*
648
649If the spell file for the language you are using is not available, you will
650get an error message.  But if the "spellfile.vim" plugin is active it will
651offer you to download the spell file.  Just follow the instructions, it will
652ask you where to write the file (there must be a writable directory in
653'runtimepath' for this).
654
655The plugin has a default place where to look for spell files, on the Vim ftp
656server.  The protocol used is SSL (https://) for security.  If you want to use
657another location or another protocol, set the g:spellfile_URL variable to the
658directory that holds the spell files.  You can use http:// or ftp://, but you
659are taking a security risk then.  The |netrw| plugin is used for getting the
660file, look there for the specific syntax of the URL.  Example: >
661	let g:spellfile_URL = 'https://ftp.nluug.nl/vim/runtime/spell'
662You may need to escape special characters.
663
664The plugin will only ask about downloading a language once.  If you want to
665try again anyway restart Vim, or set g:spellfile_URL to another value (e.g.,
666prepend a space).
667
668To avoid using the "spellfile.vim" plugin do this in your vimrc file: >
669
670	let loaded_spellfile_plugin = 1
671
672Instead of using the plugin you can define a |SpellFileMissing| autocommand to
673handle the missing file yourself.  You can use it like this: >
674
675	:au SpellFileMissing * call Download_spell_file(expand('<amatch>'))
676
677Thus the <amatch> item contains the name of the language.  Another important
678value is 'encoding', since every encoding has its own spell file.  With two
679exceptions:
680- For ISO-8859-15 (latin9) the name "latin1" is used (the encodings only
681  differ in characters not used in dictionary words).
682- The name "ascii" may also be used for some languages where the words use
683  only ASCII letters for most of the words.
684
685The default "spellfile.vim" plugin uses this autocommand, if you define your
686autocommand afterwards you may want to use ":au! SpellFileMissing" to overrule
687it.  If you define your autocommand before the plugin is loaded it will notice
688this and not do anything.
689							*E797*
690Note that the SpellFileMissing autocommand must not change or destroy the
691buffer the user was editing.
692
693==============================================================================
6944. Spell file format					*spell-file-format*
695
696This is the format of the files that are used by the person who creates and
697maintains a word list.
698
699Note that we avoid the word "dictionary" here.  That is because the goal of
700spell checking differs from writing a dictionary (as in the book).  For
701spelling we need a list of words that are OK, thus should not be highlighted.
702Person and company names will not appear in a dictionary, but do appear in a
703word list.  And some old words are rarely used while they are common
704misspellings.  These do appear in a dictionary but not in a word list.
705
706There are two formats: A straight list of words and a list using affix
707compression.  The files with affix compression are used by Myspell (Mozilla
708and OpenOffice.org).  This requires two files, one with .aff and one with .dic
709extension.
710
711
712FORMAT OF STRAIGHT WORD LIST				*spell-wordlist-format*
713
714The words must appear one per line.  That is all that is required.
715
716Additionally the following items are recognized:
717
718- Empty and blank lines are ignored.
719
720	# comment ~
721- Lines starting with a # are ignored (comment lines).
722
723	/encoding=utf-8 ~
724- A line starting with "/encoding=", before any word, specifies the encoding
725  of the file.  After the second '=' comes an encoding name.  This tells Vim
726  to setup conversion from the specified encoding to 'encoding'.  Thus you can
727  use one word list for several target encodings.
728
729	/regions=usca ~
730- A line starting with "/regions=" specifies the region names that are
731  supported.  Each region name must be two ASCII letters.  The first one is
732  region 1.  Thus "/regions=usca" has region 1 "us" and region 2 "ca".
733  In an addition word list the region names should be equal to the main word
734  list!
735
736- Other lines starting with '/' are reserved for future use.  The ones that
737  are not recognized are ignored.  You do get a warning message, so that you
738  know something won't work.
739
740- A "/" may follow the word with the following items:
741    =		Case must match exactly.
742    ?		Rare word.
743    !		Bad (wrong) word.
744    1 to 9	A region in which the word is valid.  If no regions are
745		specified the word is valid in all regions.
746
747Example:
748
749	# This is an example word list		comment
750	/encoding=latin1			encoding of the file
751	/regions=uscagb				regions "us", "ca" and "gb"
752	example					word for all regions
753	blah/12					word for regions "us" and "ca"
754	vim/!					bad word
755	Campbell/?3				rare word in region 3 "gb"
756	's mornings/=				keep-case word
757
758Note that when "/=" is used the same word with all upper-case letters is not
759accepted.  This is different from a word with mixed case that is automatically
760marked as keep-case, those words may appear in all upper-case letters.
761
762
763FORMAT WITH .AFF AND .DIC FILES				*aff-dic-format*
764
765There are two files: the basic word list and an affix file.  The affix file
766specifies settings for the language and can contain affixes.  The affixes are
767used to modify the basic words to get the full word list.  This significantly
768reduces the number of words, especially for a language like Polish.  This is
769called affix compression.
770
771The basic word list and the affix file are combined with the ":mkspell"
772command and results in a binary spell file.  All the preprocessing has been
773done, thus this file loads fast.  The binary spell file format is described in
774the source code (src/spell.c).  But only developers need to know about it.
775
776The preprocessing also allows us to take the Myspell language files and modify
777them before the Vim word list is made.  The tools for this can be found in the
778"src/spell" directory.
779
780The format for the affix and word list files is based on what Myspell uses
781(the spell checker of Mozilla and OpenOffice.org).  A description can be found
782here:
783	http://lingucomponent.openoffice.org/affix.readme ~
784Note that affixes are case sensitive, this isn't obvious from the description.
785
786Vim supports quite a few extras.  They are described below |spell-affix-vim|.
787Attempts have been made to keep this compatible with other spell checkers, so
788that the same files can often be used.  One other project that offers more
789than Myspell is Hunspell ( http://hunspell.sf.net ).
790
791
792WORD LIST FORMAT				*spell-dic-format*
793
794A short example, with line numbers:
795
796	1	1234 ~
797	2	aan ~
798	3	Als ~
799	4	Etten-Leur ~
800	5	et al. ~
801	6	's-Gravenhage ~
802	7	's-Gravenhaags ~
803	8	# word that differs between regions ~
804	9	kado/1 ~
805	10	cadeau/2 ~
806	11	TCP,IP ~
807	12	/the S affix may add a 's' ~
808	13	bedel/S ~
809
810The first line contains the number of words.  Vim ignores it, but you do get
811an error message if it's not there.  *E760*
812
813What follows is one word per line.  White space at the end of the line is
814ignored, all other white space matters.  The encoding is specified in the
815affix file |spell-SET|.
816
817Comment lines start with '#' or '/'.  See the example lines 8 and 12.  Note
818that putting a comment after a word is NOT allowed:
819
820		someword   # comment that causes an error! ~
821
822After the word there is an optional slash and flags.  Most of these flags are
823letters that indicate the affixes that can be used with this word.  These are
824specified with SFX and PFX lines in the .aff file, see |spell-SFX| and
825|spell-PFX|.  Vim allows using other flag types with the FLAG item in the
826affix file |spell-FLAG|.
827
828When the word only has lower-case letters it will also match with the word
829starting with an upper-case letter.
830
831When the word includes an upper-case letter, this means the upper-case letter
832is required at this position.  The same word with a lower-case letter at this
833position will not match. When some of the other letters are upper-case it will
834not match either.
835
836The word with all upper-case characters will always be OK,
837
838	word list	matches			does not match ~
839	als		als Als ALS		ALs AlS aLs aLS
840	Als		Als  ALS		als ALs AlS aLs aLS
841	ALS		ALS			als Als ALs AlS aLs aLS
842	AlS		AlS ALS			als Als ALs aLs aLS
843
844The KEEPCASE affix ID can be used to specifically match a word with identical
845case only, see below |spell-KEEPCASE|.
846
847Note: in line 5 to 7 non-word characters are used.  You can include any
848character in a word.  When checking the text a word still only matches when it
849appears with a non-word character before and after it.  For Myspell a word
850starting with a non-word character probably won't work.
851
852In line 12 the word "TCP/IP" is defined.  Since the slash has a special
853meaning the comma is used instead.  This is defined with the SLASH item in the
854affix file, see |spell-SLASH|.  Note that without this SLASH item the word
855will be "TCP,IP".
856
857
858AFFIX FILE FORMAT			*spell-aff-format* *spell-affix-vim*
859
860							*spell-affix-comment*
861Comment lines in the .aff file start with a '#':
862
863	# comment line ~
864
865Items with a fixed number of arguments can be followed by a comment.  But only
866if none of the arguments can contain white space.  The comment must start with
867a "#" character.  Example:
868
869	KEEPCASE =  # fix case for words with this flag ~
870
871
872ENCODING							*spell-SET*
873
874The affix file can be in any encoding that is supported by "iconv".  However,
875in some cases the current locale should also be set properly at the time
876|:mkspell| is invoked.  Adding FOL/LOW/UPP lines removes this requirement
877|spell-FOL|.
878
879The encoding should be specified before anything where the encoding matters.
880The encoding applies both to the affix file and the dictionary file.  It is
881done with a SET line:
882
883	SET utf-8 ~
884
885The encoding can be different from the value of the 'encoding' option at the
886time ":mkspell" is used.  Vim will then convert everything to 'encoding' and
887generate a spell file for 'encoding'.  If some of the used characters to not
888fit in 'encoding' you will get an error message.
889							*spell-affix-mbyte*
890When using a multibyte encoding it's possible to use more different affix
891flags.  But Myspell doesn't support that, thus you may not want to use it
892anyway.  For compatibility use an 8-bit encoding.
893
894
895INFORMATION
896
897These entries in the affix file can be used to add information to the spell
898file.  There are no restrictions on the format, but they should be in the
899right encoding.
900
901				*spell-NAME* *spell-VERSION* *spell-HOME*
902				*spell-AUTHOR* *spell-EMAIL* *spell-COPYRIGHT*
903	NAME		Name of the language
904	VERSION		1.0.1  with fixes
905	HOME		http://www.myhome.eu
906	AUTHOR		John Doe
907	EMAIL		john AT Doe DOT net
908	COPYRIGHT	LGPL
909
910These fields are put in the .spl file as-is.  The |:spellinfo| command can be
911used to view the info.
912
913							*:spellinfo* *:spelli*
914:spelli[nfo]		Display the information for the spell file(s) used for
915			the current buffer.
916
917
918CHARACTER TABLES
919							*spell-affix-chars*
920When using an 8-bit encoding the affix file should define what characters are
921word characters.  This is because the system where ":mkspell" is used may not
922support a locale with this encoding and isalpha() won't work.  For example
923when using "cp1250" on Unix.
924						*E761* *E762* *spell-FOL*
925						*spell-LOW* *spell-UPP*
926Three lines in the affix file are needed.  Simplistic example:
927
928	FOL  áëñ ~
929	LOW  áëñ ~
930	UPP  ÁËÑ ~
931
932All three lines must have exactly the same number of characters.
933
934The "FOL" line specifies the case-folded characters.  These are used to
935compare words while ignoring case.  For most encodings this is identical to
936the lower case line.
937
938The "LOW" line specifies the characters in lower-case.  Mostly it's equal to
939the "FOL" line.
940
941The "UPP" line specifies the characters with upper-case.  That is, a character
942is upper-case where it's different from the character at the same position in
943"FOL".
944
945An exception is made for the German sharp s ß.  The upper-case version is
946"SS".  In the FOL/LOW/UPP lines it should be included, so that it's recognized
947as a word character, but use the ß character in all three.
948
949ASCII characters should be omitted, Vim always handles these in the same way.
950When the encoding is UTF-8 no word characters need to be specified.
951
952							*E763*
953Vim allows you to use spell checking for several languages in the same file.
954You can list them in the 'spelllang' option.  As a consequence all spell files
955for the same encoding must use the same word characters, otherwise they can't
956be combined without errors.
957
958If you get an E763 warning that the word tables differ you need to update your
959".spl" spell files.  If you downloaded the files, get the latest version of
960all spell files you use.  If you are only using one, e.g., German, then also
961download the recent English spell files.  Otherwise generate the .spl file
962again with |:mkspell|.  If you still get errors check the FOL, LOW and UPP
963lines in the used .aff files.
964
965The XX.ascii.spl spell file generated with the "-ascii" argument will not
966contain the table with characters, so that it can be combine with spell files
967for any encoding.  The .add.spl files also do not contain the table.
968
969
970MID-WORD CHARACTERS
971							*spell-midword*
972Some characters are only to be considered word characters if they are used in
973between two ordinary word characters.  An example is the single quote: It is
974often used to put text in quotes, thus it can't be recognized as a word
975character, but when it appears in between word characters it must be part of
976the word.  This is needed to detect a spelling error such as they'are.  That
977should be they're, but since "they" and "are" are words themselves that would
978go unnoticed.
979
980These characters are defined with MIDWORD in the .aff file.  Example:
981
982	MIDWORD	'- ~
983
984
985FLAG TYPES						*spell-FLAG*
986
987Flags are used to specify the affixes that can be used with a word and for
988other properties of the word.  Normally single-character flags are used.  This
989limits the number of possible flags, especially for 8-bit encodings.  The FLAG
990item can be used if more affixes are to be used.  Possible values:
991
992	FLAG long	use two-character flags
993	FLAG num	use numbers, from 1 up to 65000
994	FLAG caplong	use one-character flags without A-Z and two-character
995			flags that start with A-Z
996
997With "FLAG num" the numbers in a list of affixes need to be separated with a
998comma: "234,2143,1435".  This method is inefficient, but useful if the file is
999generated with a program.
1000
1001When using "caplong" the two-character flags all start with a capital: "Aa",
1002"B1", "BB", etc.  This is useful to use one-character flags for the most
1003common items and two-character flags for uncommon items.
1004
1005Note: When using utf-8 only characters up to 65000 may be used for flags.
1006
1007Note: even when using "num" or "long" the number of flags available to
1008compounding and prefixes is limited to about 250.
1009
1010
1011AFFIXES
1012					    *spell-PFX* *spell-SFX*
1013The usual PFX (prefix) and SFX (suffix) lines are supported (see the Myspell
1014documentation or the Aspell manual:
1015http://aspell.net/man-html/Affix-Compression.html).
1016
1017Summary:
1018	SFX L Y 2 ~
1019	SFX L 0 re [^x] ~
1020	SFX L 0 ro x ~
1021
1022The first line is a header and has four fields:
1023	SFX {flag} {combine} {count}
1024
1025{flag}		The name used for the suffix.  Mostly it's a single letter,
1026		but other characters can be used, see |spell-FLAG|.
1027
1028{combine}	Can be 'Y' or 'N'.  When 'Y' then the word plus suffix can
1029		also have a prefix.  When 'N' then a prefix is not allowed.
1030
1031{count}		The number of lines following.  If this is wrong you will get
1032		an error message.
1033
1034For PFX the fields are exactly the same.
1035
1036The basic format for the following lines is:
1037	SFX {flag} {strip} {add} {condition} {extra}
1038
1039{flag}		Must be the same as the {flag} used in the first line.
1040
1041{strip}		Characters removed from the basic word.  There is no check if
1042		the characters are actually there, only the length is used (in
1043		bytes).  This better match the {condition}, otherwise strange
1044		things may happen.  If the {strip} length is equal to or
1045		longer than the basic word the suffix won't be used.
1046		When {strip} is 0 (zero) then nothing is stripped.
1047
1048{add}		Characters added to the basic word, after removing {strip}.
1049		Optionally there is a '/' followed by flags.  The flags apply
1050		to the word plus affix.  See |spell-affix-flags|
1051
1052{condition}	A simplistic pattern.  Only when this matches with a basic
1053		word will the suffix be used for that word.  This is normally
1054		for using one suffix letter with different {add} and {strip}
1055		fields for words with different endings.
1056		When {condition} is a . (dot) there is no condition.
1057		The pattern may contain:
1058		- Literal characters.
1059		- A set of characters in []. [abc] matches a, b and c.
1060		  A dash is allowed for a range [a-c], but this is
1061		  Vim-specific.
1062		- A set of characters that starts with a ^, meaning the
1063		  complement of the specified characters. [^abc] matches any
1064		  character but a, b and c.
1065
1066{extra}		Optional extra text:
1067		    # comment		Comment is ignored
1068		    -			Hunspell uses this, ignored
1069
1070For PFX the fields are the same, but the {strip}, {add} and {condition} apply
1071to the start of the word.
1072
1073Note: Myspell ignores any extra text after the relevant info.  Vim requires
1074this text to start with a "#" so that mistakes don't go unnoticed.  Example:
1075
1076	SFX F 0 in   [^i]n      # Spion > Spionin  ~
1077	SFX F 0 nen  in		# Bauerin > Bauerinnen ~
1078
1079However, to avoid lots of errors in affix files written for Myspell, you can
1080add the IGNOREEXTRA flag.
1081
1082Apparently Myspell allows an affix name to appear more than once.  Since this
1083might also be a mistake, Vim checks for an extra "S".  The affix files for
1084Myspell that use this feature apparently have this flag.  Example:
1085
1086	SFX a Y 1 S ~
1087	SFX a 0 an . ~
1088
1089	SFX a Y 2 S ~
1090	SFX a 0 en . ~
1091	SFX a 0 on . ~
1092
1093
1094AFFIX FLAGS						*spell-affix-flags*
1095
1096This is a feature that comes from Hunspell: The affix may specify flags.  This
1097works similar to flags specified on a basic word.  The flags apply to the
1098basic word plus the affix (but there are restrictions).  Example:
1099
1100	SFX S Y 1 ~
1101	SFX S 0 s . ~
1102
1103	SFX A Y 1 ~
1104	SFX A 0 able/S . ~
1105
1106When the dictionary file contains "drink/AS" then these words are possible:
1107
1108	drink
1109	drinks		uses S suffix
1110	drinkable	uses A suffix
1111	drinkables	uses A suffix and then S suffix
1112
1113Generally the flags of the suffix are added to the flags of the basic word,
1114both are used for the word plus suffix.  But the flags of the basic word are
1115only used once for affixes, except that both one prefix and one suffix can be
1116used when both support combining.
1117
1118Specifically, the affix flags can be used for:
1119- Suffixes on suffixes, as in the example above.  This works once, thus you
1120  can have two suffixes on a word (plus one prefix).
1121- Making the word with the affix rare, by using the |spell-RARE| flag.
1122- Exclude the word with the affix from compounding, by using the
1123  |spell-COMPOUNDFORBIDFLAG| flag.
1124- Allow the word with the affix to be part of a compound word on the side of
1125  the affix with the |spell-COMPOUNDPERMITFLAG|.
1126- Use the NEEDCOMPOUND flag: word plus affix can only be used as part of a
1127  compound word. |spell-NEEDCOMPOUND|
1128- Compound flags: word plus affix can be part of a compound word at the end,
1129  middle, start, etc.  The flags are combined with the flags of the basic
1130  word.  |spell-compound|
1131- NEEDAFFIX: another affix is needed to make a valid word.
1132- CIRCUMFIX, as explained just below.
1133
1134
1135IGNOREEXTRA						*spell-IGNOREEXTRA*
1136
1137Normally Vim gives an error for an extra field that does not start with '#'.
1138This avoids errors going unnoticed.  However, some files created for Myspell
1139or Hunspell may contain many entries with an extra field.  Use the IGNOREEXTRA
1140flag to avoid lots of errors.
1141
1142
1143CIRCUMFIX						*spell-CIRCUMFIX*
1144
1145The CIRCUMFIX flag means a prefix and suffix must be added at the same time.
1146If a prefix has the CIRCUMFIX flag then only suffixes with the CIRCUMFIX flag
1147can be added, and the other way around.
1148An alternative is to only specify the suffix, and give that suffix two flags:
1149the required prefix and the NEEDAFFIX flag.  |spell-NEEDAFFIX|
1150
1151
1152PFXPOSTPONE						*spell-PFXPOSTPONE*
1153
1154When an affix file has very many prefixes that apply to many words it's not
1155possible to build the whole word list in memory.  This applies to Hebrew (a
1156list with all words is over a Gbyte).  In that case applying prefixes must be
1157postponed.  This makes spell checking slower.  It is indicated by this keyword
1158in the .aff file:
1159
1160	PFXPOSTPONE ~
1161
1162Only prefixes without a chop string and without flags can be postponed.
1163Prefixes with a chop string or with flags will still be included in the word
1164list.  An exception if the chop string is one character and equal to the last
1165character of the added string, but in lower case.  Thus when the chop string
1166is used to allow the following word to start with an upper case letter.
1167
1168
1169WORDS WITH A SLASH					*spell-SLASH*
1170
1171The slash is used in the .dic file to separate the basic word from the affix
1172letters and other flags.  Unfortunately, this means you cannot use a slash in
1173a word.  Thus "TCP/IP" is not a word but "TCP" with the flags "IP".  To include
1174a slash in the word put a backslash before it: "TCP\/IP".  In the rare case
1175you want to use a backslash inside a word you need to use two backslashes.
1176Any other use of the backslash is reserved for future expansion.
1177
1178
1179KEEP-CASE WORDS						*spell-KEEPCASE*
1180
1181In the affix file a KEEPCASE line can be used to define the affix name used
1182for keep-case words.  Example:
1183
1184	KEEPCASE = ~
1185
1186This flag is not supported by Myspell.  It has the meaning that case matters.
1187This can be used if the word does not have the first letter in upper case at
1188the start of a sentence.  Example:
1189
1190    word list	    matches		    does not match ~
1191    's morgens/=    's morgens		    'S morgens 's Morgens 'S MORGENS
1192    's Morgens	    's Morgens 'S MORGENS   'S morgens 's morgens
1193
1194The flag can also be used to avoid that the word matches when it is in all
1195upper-case letters.
1196
1197
1198RARE WORDS						*spell-RARE*
1199
1200In the affix file a RARE line can be used to define the affix name used for
1201rare words.  Example:
1202
1203	RARE ? ~
1204
1205Rare words are highlighted differently from bad words.  This is to be used for
1206words that are correct for the language, but are hardly ever used and could be
1207a typing mistake anyway.  When the same word is found as good it won't be
1208highlighted as rare.
1209
1210This flag can also be used on an affix, so that a basic word is not rare but
1211the basic word plus affix is rare |spell-affix-flags|.  However, if the word
1212also appears as a good word in another way (e.g., in another region) it won't
1213be marked as rare.
1214
1215
1216BAD WORDS						*spell-BAD*
1217
1218In the affix file a BAD line can be used to define the affix name used for
1219bad words.  Example:
1220
1221	BAD ! ~
1222
1223This can be used to exclude words that would otherwise be good.  For example
1224"the the" in the .dic file:
1225
1226	the the/! ~
1227
1228Once a word has been marked as bad it won't be undone by encountering the same
1229word as good.
1230
1231The flag also applies to the word with affixes, thus this can be used to mark
1232a whole bunch of related words as bad.
1233
1234							*spell-FORBIDDENWORD*
1235FORBIDDENWORD can be used just like BAD.  For compatibility with Hunspell.
1236
1237							*spell-NEEDAFFIX*
1238The NEEDAFFIX flag is used to require that a word is used with an affix.  The
1239word itself is not a good word (unless there is an empty affix).  Example:
1240
1241	NEEDAFFIX + ~
1242
1243
1244COMPOUND WORDS						*spell-compound*
1245
1246A compound word is a longer word made by concatenating words that appear in
1247the .dic file.  To specify which words may be concatenated a character is
1248used.  This character is put in the list of affixes after the word.  We will
1249call this character a flag here.  Obviously these flags must be different from
1250any affix IDs used.
1251
1252							*spell-COMPOUNDFLAG*
1253The Myspell compatible method uses one flag, specified with COMPOUNDFLAG.  All
1254words with this flag combine in any order.  This means there is no control
1255over which word comes first.  Example:
1256	COMPOUNDFLAG c ~
1257
1258							*spell-COMPOUNDRULE*
1259A more advanced method to specify how compound words can be formed uses
1260multiple items with multiple flags.  This is not compatible with Myspell 3.0.
1261Let's start with an example:
1262	COMPOUNDRULE c+ ~
1263	COMPOUNDRULE se ~
1264
1265The first line defines that words with the "c" flag can be concatenated in any
1266order.  The second line defines compound words that are made of one word with
1267the "s" flag and one word with the "e" flag.  With this dictionary:
1268	bork/c ~
1269	onion/s ~
1270	soup/e ~
1271
1272You can make these words:
1273	bork
1274	borkbork
1275	borkborkbork
1276	(etc.)
1277	onion
1278	soup
1279	onionsoup
1280
1281The COMPOUNDRULE item may appear multiple times.  The argument is made out of
1282one or more groups, where each group can be:
1283	one flag			e.g., c
1284	alternate flags inside []	e.g., [abc]
1285Optionally this may be followed by:
1286	*	the group appears zero or more times, e.g., sm*e
1287	+	the group appears one or more times, e.g., c+
1288	?	the group appears zero times or once, e.g., x?
1289
1290This is similar to the regexp pattern syntax (but not the same!).  A few
1291examples with the sequence of word flags they require:
1292    COMPOUNDRULE x+	    x xx xxx etc.
1293    COMPOUNDRULE yz	    yz
1294    COMPOUNDRULE x+z	    xz xxz xxxz etc.
1295    COMPOUNDRULE yx+	    yx yxx yxxx etc.
1296    COMPOUNDRULE xy?z	    xz xyz
1297
1298    COMPOUNDRULE [abc]z    az bz cz
1299    COMPOUNDRULE [abc]+z   az aaz abaz bz baz bcbz cz caz cbaz etc.
1300    COMPOUNDRULE a[xyz]+   ax axx axyz ay ayx ayzz az azy azxy etc.
1301    COMPOUNDRULE sm*e	    se sme smme smmme etc.
1302    COMPOUNDRULE s[xyz]*e  se sxe sxye sxyxe sye syze sze szye szyxe  etc.
1303
1304A specific example: Allow a compound to be made of two words and a dash:
1305	In the .aff file:
1306	    COMPOUNDRULE sde ~
1307	    NEEDAFFIX x ~
1308	    COMPOUNDWORDMAX 3 ~
1309	    COMPOUNDMIN 1 ~
1310	In the .dic file:
1311	    start/s ~
1312	    end/e ~
1313	    -/xd ~
1314
1315This allows for the word "start-end", but not "startend".
1316
1317An additional implied rule is that, without further flags, a word with a
1318prefix cannot be compounded after another word, and a word with a suffix
1319cannot be compounded with a following word.  Thus the affix cannot appear
1320on the inside of a compound word.  This can be changed with the
1321|spell-COMPOUNDPERMITFLAG|.
1322
1323							*spell-NEEDCOMPOUND*
1324The NEEDCOMPOUND flag is used to require that a word is used as part of a
1325compound word.  The word itself is not a good word.  Example:
1326
1327	NEEDCOMPOUND & ~
1328
1329							*spell-ONLYINCOMPOUND*
1330The ONLYINCOMPOUND does exactly the same as NEEDCOMPOUND.  Supported for
1331compatibility with Hunspell.
1332
1333							*spell-COMPOUNDMIN*
1334The minimal character length of a word used for compounding is specified with
1335COMPOUNDMIN.  Example:
1336	COMPOUNDMIN 5 ~
1337
1338When omitted there is no minimal length.  Obviously you could just leave out
1339the compound flag from short words instead, this feature is present for
1340compatibility with Myspell.
1341
1342							*spell-COMPOUNDWORDMAX*
1343The maximum number of words that can be concatenated into a compound word is
1344specified with COMPOUNDWORDMAX.  Example:
1345	COMPOUNDWORDMAX 3 ~
1346
1347When omitted there is no maximum.  It applies to all compound words.
1348
1349To set a limit for words with specific flags make sure the items in
1350COMPOUNDRULE where they appear don't allow too many words.
1351
1352							*spell-COMPOUNDSYLMAX*
1353The maximum number of syllables that a compound word may contain is specified
1354with COMPOUNDSYLMAX.  Example:
1355	COMPOUNDSYLMAX 6 ~
1356
1357This has no effect if there is no SYLLABLE item.  Without COMPOUNDSYLMAX there
1358is no limit on the number of syllables.
1359
1360If both COMPOUNDWORDMAX and COMPOUNDSYLMAX are defined, a compound word is
1361accepted if it fits one of the criteria, thus is either made from up to
1362COMPOUNDWORDMAX words or contains up to COMPOUNDSYLMAX syllables.
1363
1364						    *spell-COMPOUNDFORBIDFLAG*
1365The COMPOUNDFORBIDFLAG specifies a flag that can be used on an affix.  It
1366means that the word plus affix cannot be used in a compound word.  Example:
1367	affix file:
1368		COMPOUNDFLAG c ~
1369		COMPOUNDFORBIDFLAG x ~
1370		SFX a Y 2 ~
1371		SFX a 0 s   . ~
1372		SFX a 0 ize/x . ~
1373	dictionary:
1374		word/c ~
1375		util/ac ~
1376
1377This allows for "wordutil" and "wordutils" but not "wordutilize".
1378Note: this doesn't work for postponed prefixes yet.
1379
1380						    *spell-COMPOUNDPERMITFLAG*
1381The COMPOUNDPERMITFLAG specifies a flag that can be used on an affix.  It
1382means that the word plus affix can also be used in a compound word in a way
1383where the affix ends up halfway the word.  Without this flag that is not
1384allowed.
1385Note: this doesn't work for postponed prefixes yet.
1386
1387						    *spell-COMPOUNDROOT*
1388The COMPOUNDROOT flag is used for words in the dictionary that are already a
1389compound.  This means it counts for two words when checking the compounding
1390rules.  Can also be used for an affix to count the affix as a compounding
1391word.
1392
1393						*spell-CHECKCOMPOUNDPATTERN*
1394CHECKCOMPOUNDPATTERN is used to define patterns that, when matching at the
1395position where two words are compounded together forbids the compound.
1396For example:
1397	CHECKCOMPOUNDPATTERN o e ~
1398
1399This forbids compounding if the first word ends in "o" and the second word
1400starts with "e".
1401
1402The arguments must be plain text, no patterns are actually supported, despite
1403the item name.  Case is always ignored.
1404
1405The Hunspell feature to use three arguments and flags is not supported.
1406
1407							*spell-NOCOMPOUNDSUGS*
1408This item indicates that using compounding to make suggestions is not a good
1409idea.  Use this when compounding is used with very short or one-character
1410words.  E.g. to make numbers out of digits.  Without this flag creating
1411suggestions would spend most time trying all kind of weird compound words.
1412
1413	NOCOMPOUNDSUGS ~
1414
1415							*spell-SYLLABLE*
1416The SYLLABLE item defines characters or character sequences that are used to
1417count the number of syllables in a word.  Example:
1418	SYLLABLE aáeéiíoóöõuúüûy/aa/au/ea/ee/ei/ie/oa/oe/oo/ou/uu/ui ~
1419
1420Before the first slash is the set of characters that are counted for one
1421syllable, also when repeated and mixed, until the next character that is not
1422in this set.  After the slash come sequences of characters that are counted
1423for one syllable.  These are preferred over using characters from the set.
1424With the example "ideeen" has three syllables, counted by "i", "ee" and "e".
1425
1426Only case-folded letters need to be included.
1427
1428Another way to restrict compounding was mentioned above: Adding the
1429|spell-COMPOUNDFORBIDFLAG| flag to an affix causes all words that are made
1430with that affix to not be used for compounding.
1431
1432
1433UNLIMITED COMPOUNDING					*spell-NOBREAK*
1434
1435For some languages, such as Thai, there is no space in between words.  This
1436looks like all words are compounded.  To specify this use the NOBREAK item in
1437the affix file, without arguments:
1438	NOBREAK ~
1439
1440Vim will try to figure out where one word ends and a next starts.  When there
1441are spelling mistakes this may not be quite right.
1442
1443
1444							*spell-COMMON*
1445Common words can be specified with the COMMON item.  This will give better
1446suggestions when editing a short file.  Example:
1447
1448	COMMON  the of to and a in is it you that he she was for on are ~
1449
1450The words must be separated by white space, up to 25 per line.
1451When multiple regions are specified in a ":mkspell" command the common words
1452for all regions are combined and used for all regions.
1453
1454							*spell-NOSPLITSUGS*
1455This item indicates that splitting a word to make suggestions is not a good
1456idea.  Split-word suggestions will appear only when there are few similar
1457words.
1458
1459	NOSPLITSUGS ~
1460
1461							*spell-NOSUGGEST*
1462The flag specified with NOSUGGEST can be used for words that will not be
1463suggested.  Can be used for obscene words.
1464
1465	NOSUGGEST % ~
1466
1467
1468REPLACEMENTS						*spell-REP*
1469
1470In the affix file REP items can be used to define common mistakes.  This is
1471used to make spelling suggestions.  The items define the "from" text and the
1472"to" replacement.  Example:
1473
1474	REP 4 ~
1475	REP f ph ~
1476	REP ph f ~
1477	REP k ch ~
1478	REP ch k ~
1479
1480The first line specifies the number of REP lines following.  Vim ignores the
1481number, but it must be there (for compatibility with Myspell).
1482
1483Don't include simple one-character replacements or swaps.  Vim will try these
1484anyway.  You can include whole words if you want to, but you might want to use
1485the "file:" item in 'spellsuggest' instead.
1486
1487You can include a space by using an underscore:
1488
1489	REP the_the the ~
1490
1491
1492SIMILAR CHARACTERS					*spell-MAP* *E783*
1493
1494In the affix file MAP items can be used to define letters that are very much
1495alike.  This is mostly used for a letter with different accents.  This is used
1496to prefer suggestions with these letters substituted.  Example:
1497
1498	MAP 2 ~
1499	MAP eéëêè ~
1500	MAP uüùúû ~
1501
1502The first line specifies the number of MAP lines following.  Vim ignores the
1503number, but the line must be there.
1504
1505Each letter must appear in only one of the MAP items.  It's a bit more
1506efficient if the first letter is ASCII or at least one without accents.
1507
1508
1509.SUG FILE						*spell-NOSUGFILE*
1510
1511When soundfolding is specified in the affix file then ":mkspell" will normally
1512produce a .sug file next to the .spl file.  This file is used to find
1513suggestions by their sound-a-like form quickly.  At the cost of a lot of
1514memory (the amount depends on the number of words, |:mkspell| will display an
1515estimate when it's done).
1516
1517To avoid producing a .sug file use this item in the affix file:
1518
1519	NOSUGFILE ~
1520
1521Users can simply omit the .sug file if they don't want to use it.
1522
1523
1524SOUND-A-LIKE						*spell-SAL*
1525
1526In the affix file SAL items can be used to define the sounds-a-like mechanism
1527to be used.  The main items define the "from" text and the "to" replacement.
1528Simplistic example:
1529
1530	SAL CIA			 X ~
1531	SAL CH			 X ~
1532	SAL C			 K ~
1533	SAL K			 K ~
1534
1535There are a few rules and this can become quite complicated.  An explanation
1536how it works can be found in the Aspell manual:
1537http://aspell.net/man-html/Phonetic-Code.html.
1538
1539There are a few special items:
1540
1541	SAL followup		true ~
1542	SAL collapse_result	true ~
1543	SAL remove_accents	true ~
1544
1545"1" has the same meaning as "true".  Any other value means "false".
1546
1547
1548SIMPLE SOUNDFOLDING				*spell-SOFOFROM* *spell-SOFOTO*
1549
1550The SAL mechanism is complex and slow.  A simpler mechanism is mapping all
1551characters to another character, mapping similar sounding characters to the
1552same character.  At the same time this does case folding.  You can not have
1553both SAL items and simple soundfolding.
1554
1555There are two items required: one to specify the characters that are mapped
1556and one that specifies the characters they are mapped to.  They must have
1557exactly the same number of characters.  Example:
1558
1559    SOFOFROM abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ ~
1560    SOFOTO   ebctefghejklnnepkrstevvkesebctefghejklnnepkrstevvkes ~
1561
1562In the example all vowels are mapped to the same character 'e'.  Another
1563method would be to leave out all vowels.  Some characters that sound nearly
1564the same and are often mixed up, such as 'm' and 'n', are mapped to the same
1565character.  Don't do this too much, all words will start looking alike.
1566
1567Characters that do not appear in SOFOFROM will be left out, except that all
1568white space is replaced by one space.  Sequences of the same character in
1569SOFOFROM are replaced by one.
1570
1571You can use the |soundfold()| function to try out the results.  Or set the
1572'verbose' option to see the score in the output of the |z=| command.
1573
1574
1575UNSUPPORTED ITEMS				*spell-affix-not-supported*
1576
1577These items appear in the affix file of other spell checkers.  In Vim they are
1578ignored, not supported or defined in another way.
1579
1580ACCENT		(Hunspell)				*spell-ACCENT*
1581		Use MAP instead. |spell-MAP|
1582
1583BREAK		(Hunspell)				*spell-BREAK*
1584		Define break points.  Unclear how it works exactly.
1585		Not supported.
1586
1587CHECKCOMPOUNDCASE  (Hunspell)			*spell-CHECKCOMPOUNDCASE*
1588		Disallow uppercase letters at compound word boundaries.
1589		Not supported.
1590
1591CHECKCOMPOUNDDUP  (Hunspell)			*spell-CHECKCOMPOUNDDUP*
1592		Disallow using the same word twice in a compound.  Not
1593		supported.
1594
1595CHECKCOMPOUNDREP  (Hunspell)			*spell-CHECKCOMPOUNDREP*
1596		Something about using REP items and compound words.  Not
1597		supported.
1598
1599CHECKCOMPOUNDTRIPLE  (Hunspell)			*spell-CHECKCOMPOUNDTRIPLE*
1600		Forbid three identical characters when compounding.  Not
1601		supported.
1602
1603CHECKSHARPS  (Hunspell))			*spell-CHECKSHARPS*
1604		SS letter pair in uppercased (German) words may be upper case
1605		sharp s (ß). Not supported.
1606
1607COMPLEXPREFIXES  (Hunspell)				*spell-COMPLEXPREFIXES*
1608		Enables using two prefixes.  Not supported.
1609
1610COMPOUND	(Hunspell)				*spell-COMPOUND*
1611		This is one line with the count of COMPOUND items, followed by
1612		that many COMPOUND lines with a pattern.
1613		Remove the first line with the count and rename the other
1614		items to COMPOUNDRULE |spell-COMPOUNDRULE|
1615
1616COMPOUNDFIRST	(Hunspell)				*spell-COMPOUNDFIRST*
1617		Use COMPOUNDRULE instead. |spell-COMPOUNDRULE|
1618
1619COMPOUNDBEGIN	(Hunspell)				*spell-COMPOUNDBEGIN*
1620		Words signed with COMPOUNDBEGIN may be first elements in
1621		compound words.
1622		Use COMPOUNDRULE instead. |spell-COMPOUNDRULE|
1623
1624COMPOUNDLAST	(Hunspell)				*spell-COMPOUNDLAST*
1625		Words signed with COMPOUNDLAST may be last elements in
1626		compound words.
1627		Use COMPOUNDRULE instead. |spell-COMPOUNDRULE|
1628
1629COMPOUNDEND	(Hunspell)				*spell-COMPOUNDEND*
1630		Probably the same as COMPOUNDLAST
1631
1632COMPOUNDMIDDLE	(Hunspell)				*spell-COMPOUNDMIDDLE*
1633		Words signed with COMPOUNDMIDDLE may be middle elements in
1634		compound words.
1635		Use COMPOUNDRULE instead. |spell-COMPOUNDRULE|
1636
1637COMPOUNDRULES	(Hunspell)				*spell-COMPOUNDRULES*
1638		Number of COMPOUNDRULE lines following.  Ignored, but the
1639		argument must be a number.
1640
1641COMPOUNDSYLLABLE  (Hunspell)			*spell-COMPOUNDSYLLABLE*
1642		Use SYLLABLE and COMPOUNDSYLMAX instead. |spell-SYLLABLE|
1643		|spell-COMPOUNDSYLMAX|
1644
1645KEY		(Hunspell)				*spell-KEY*
1646		Define characters that are close together on the keyboard.
1647		Used to give better suggestions.  Not supported.
1648
1649LANG		(Hunspell)				*spell-LANG*
1650		This specifies language-specific behavior.  This actually
1651		moves part of the language knowledge into the program,
1652		therefore Vim does not support it.  Each language property
1653		must be specified separately.
1654
1655LEMMA_PRESENT	(Hunspell)				*spell-LEMMA_PRESENT*
1656		Only needed for morphological analysis.
1657
1658MAXNGRAMSUGS	(Hunspell)				*spell-MAXNGRAMSUGS*
1659		Set number of n-gram suggestions.  Not supported.
1660
1661PSEUDOROOT	(Hunspell)				*spell-PSEUDOROOT*
1662		Use NEEDAFFIX instead. |spell-NEEDAFFIX|
1663
1664SUGSWITHDOTS	(Hunspell)				*spell-SUGSWITHDOTS*
1665		Adds dots to suggestions.  Vim doesn't need this.
1666
1667SYLLABLENUM	(Hunspell)				*spell-SYLLABLENUM*
1668		Not supported.
1669
1670TRY		(Myspell, Hunspell, others)		*spell-TRY*
1671		Vim does not use the TRY item, it is ignored.  For making
1672		suggestions the actual characters in the words are used, that
1673		is much more efficient.
1674
1675WORDCHARS	(Hunspell)				*spell-WORDCHARS*
1676		Used to recognize words.  Vim doesn't need it, because there
1677		is no need to separate words before checking them (using a
1678		trie instead of a hashtable).
1679
1680 vim:tw=78:sw=4:ts=8:noet:ft=help:norl:
1681