blob: e3acb6eed02029567d8644d1cb7008473a03f1e7 [file] [log] [blame]
Milly89872f52024-10-05 17:16:18 +02001*spell.txt* For Vim version 9.1. Last change: 2024 Oct 05
Bram Moolenaar217ad922005-03-20 22:37:15 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7Spell checking *spell*
8
91. Quick start |spell-quickstart|
Bram Moolenaard042c562005-06-30 22:04:15 +0000102. Remarks on spell checking |spell-remarks|
113. Generating a spell file |spell-mkspell|
124. Spell file format |spell-file-format|
Bram Moolenaar217ad922005-03-20 22:37:15 +000013
Bram Moolenaar25c9c682019-05-05 18:13:34 +020014{not available when the |+syntax| feature has been disabled at compile time}
Bram Moolenaar217ad922005-03-20 22:37:15 +000015
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000016Note: 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
Bram Moolenaar217ad922005-03-20 22:37:15 +000020==============================================================================
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +0000211. Quick start *spell-quickstart* *E756*
Bram Moolenaar217ad922005-03-20 22:37:15 +000022
23This command switches on spell checking: >
24
25 :setlocal spell spelllang=en_us
26
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +000027This switches on the 'spell' option and specifies to check for US English.
Bram Moolenaar217ad922005-03-20 22:37:15 +000028
29The words that are not recognized are highlighted with one of these:
Bram Moolenaar520470a2005-06-16 21:59:56 +000030 SpellBad word not recognized |hl-SpellBad|
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +000031 SpellCap word not capitalised |hl-SpellCap|
Bram Moolenaar520470a2005-06-16 21:59:56 +000032 SpellRare rare word |hl-SpellRare|
33 SpellLocal wrong spelling for selected region |hl-SpellLocal|
Bram Moolenaar217ad922005-03-20 22:37:15 +000034
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +000035Vim only checks words for spelling, there is no grammar check.
36
Bram Moolenaar45360022005-07-21 21:08:21 +000037If 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
Bram Moolenaar16d8f872005-11-26 23:46:11 +000039spelled word, then the popup menu will contain a submenu to replace the bad
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000040word. 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.
Bram Moolenaar45360022005-07-21 21:08:21 +000043
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +000044To search for the next misspelled word:
45
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +000046 *]s*
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +000047]s Move to next misspelled word after the cursor.
Bram Moolenaar9d0ec2e2005-04-20 19:45:58 +000048 A count before the command can be used to repeat.
Bram Moolenaarac6e65f2005-08-29 22:25:38 +000049 'wrapscan' applies.
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +000050
51 *[s*
Bram Moolenaar9d0ec2e2005-04-20 19:45:58 +000052[s Like "]s" but search backwards, find the misspelled
Bram Moolenaar30abd282005-06-22 22:35:10 +000053 word before the cursor. Doesn't recognize words
54 split over two lines, thus may stop at words that are
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +000055 not highlighted as bad. Does not stop at word with
56 missing capital at the start of a line.
Bram Moolenaar9d0ec2e2005-04-20 19:45:58 +000057
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.
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +000064
Christ van Willegen - van Noort8e4c4c72024-05-17 18:49:27 +020065 *]r*
66]r Move to next "rare" word after the cursor.
67 A count before the command can be used to repeat.
68 'wrapscan' applies.
69
70 *[r*
71[r Like "]r" but search backwards, find the "rare"
72 word before the cursor. Doesn't recognize words
73 split over two lines, thus may stop at words that are
74 not highlighted as rare.
75
Bram Moolenaar217ad922005-03-20 22:37:15 +000076
Bram Moolenaarf75a9632005-09-13 21:20:47 +000077To add words to your own word list:
Bram Moolenaar82cf9b62005-06-07 21:09:25 +000078
79 *zg*
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +000080zg Add word under the cursor as a good word to the first
Bram Moolenaarda2303d2005-08-30 21:55:26 +000081 name in 'spellfile'. A count may precede the command
82 to indicate the entry in 'spellfile' to be used. A
83 count of two uses the second entry.
84
85 In Visual mode the selected characters are added as a
86 word (including white space!).
87 When the cursor is on text that is marked as badly
88 spelled then the marked text is used.
89 Otherwise the word under the cursor, separated by
90 non-word characters, is used.
91
92 If the word is explicitly marked as bad word in
93 another spell file the result is unpredictable.
Bram Moolenaar82cf9b62005-06-07 21:09:25 +000094
Bram Moolenaar1f8a5f02005-07-01 22:41:52 +000095 *zG*
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +000096zG Like "zg" but add the word to the internal word list
97 |internal-wordlist|.
Bram Moolenaar1f8a5f02005-07-01 22:41:52 +000098
Bram Moolenaar82cf9b62005-06-07 21:09:25 +000099 *zw*
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +0000100zw Like "zg" but mark the word as a wrong (bad) word.
Bram Moolenaar87b5ca52006-03-04 21:55:31 +0000101 If the word already appears in 'spellfile' it is
102 turned into a comment line. See |spellfile-cleanup|
103 for getting rid of those.
Bram Moolenaar82cf9b62005-06-07 21:09:25 +0000104
Bram Moolenaar1f8a5f02005-07-01 22:41:52 +0000105 *zW*
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +0000106zW Like "zw" but add the word to the internal word list
107 |internal-wordlist|.
Bram Moolenaar1f8a5f02005-07-01 22:41:52 +0000108
Bram Moolenaar87b5ca52006-03-04 21:55:31 +0000109zuw *zug* *zuw*
110zug Undo |zw| and |zg|, remove the word from the entry in
111 'spellfile'. Count used as with |zg|.
112
113zuW *zuG* *zuW*
114zuG Undo |zW| and |zG|, remove the word from the internal
115 word list. Count used as with |zg|.
116
Bram Moolenaar2ecbe532022-07-29 21:36:21 +0100117 *:spe* *:spellgood* *E1280*
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +0000118:[count]spe[llgood] {word}
Bram Moolenaar53180ce2005-07-05 21:48:14 +0000119 Add {word} as a good word to 'spellfile', like with
Bram Moolenaar87b5ca52006-03-04 21:55:31 +0000120 |zg|. Without count the first name is used, with a
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +0000121 count of two the second entry, etc.
Bram Moolenaar82cf9b62005-06-07 21:09:25 +0000122
Bram Moolenaar53180ce2005-07-05 21:48:14 +0000123:spe[llgood]! {word} Add {word} as a good word to the internal word list,
Bram Moolenaar87b5ca52006-03-04 21:55:31 +0000124 like with |zG|.
Bram Moolenaar1f8a5f02005-07-01 22:41:52 +0000125
Bram Moolenaar520470a2005-06-16 21:59:56 +0000126 *:spellw* *:spellwrong*
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +0000127:[count]spellw[rong] {word}
Bram Moolenaar53180ce2005-07-05 21:48:14 +0000128 Add {word} as a wrong (bad) word to 'spellfile', as
Bram Moolenaar87b5ca52006-03-04 21:55:31 +0000129 with |zw|. Without count the first name is used, with
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +0000130 a count of two the second entry, etc.
Bram Moolenaar82cf9b62005-06-07 21:09:25 +0000131
Bram Moolenaar53180ce2005-07-05 21:48:14 +0000132:spellw[rong]! {word} Add {word} as a wrong (bad) word to the internal word
Bram Moolenaar87b5ca52006-03-04 21:55:31 +0000133 list, like with |zW|.
134
Bram Moolenaara3891682019-08-16 22:42:13 +0200135 *:spellra* *:spellrare*
Bram Moolenaar10e8ff92023-06-10 21:40:39 +0100136:[count]spellra[re] {word}
Bram Moolenaar08cc3742019-08-11 22:51:14 +0200137 Add {word} as a rare word to 'spellfile', similar to
138 |zw|. Without count the first name is used, with
139 a count of two the second entry, etc.
140
141 There are no normal mode commands to mark words as
142 rare as this is a fairly uncommon command and all
143 intuitive commands for this are already taken. If you
144 want you can add mappings with e.g.: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000145 nnoremap z? :exe ':spellrare ' .. expand('<cWORD>')<CR>
146 nnoremap z/ :exe ':spellrare! ' .. expand('<cWORD>')<CR>
Bram Moolenaar08cc3742019-08-11 22:51:14 +0200147< |:spellundo|, |zuw|, or |zuW| can be used to undo this.
148
Bram Moolenaar10e8ff92023-06-10 21:40:39 +0100149:spellra[re]! {word} Add {word} as a rare word to the internal word
Bram Moolenaar08cc3742019-08-11 22:51:14 +0200150 list, similar to |zW|.
151
Bram Moolenaar87b5ca52006-03-04 21:55:31 +0000152:[count]spellu[ndo] {word} *:spellu* *:spellundo*
153 Like |zuw|. [count] used as with |:spellgood|.
154
155:spellu[ndo]! {word} Like |zuW|. [count] used as with |:spellgood|.
156
Bram Moolenaar1f8a5f02005-07-01 22:41:52 +0000157
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000158After adding a word to 'spellfile' with the above commands its associated
Bram Moolenaard042c562005-06-30 22:04:15 +0000159".spl" file will automatically be updated and reloaded. If you change
160'spellfile' manually you need to use the |:mkspell| command. This sequence of
161commands mostly works well: >
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +0000162 :edit <file in 'spellfile'>
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000163< (make changes to the spell file) >
164 :mkspell! %
165
166More details about the 'spellfile' format below |spell-wordlist-format|.
Bram Moolenaar82cf9b62005-06-07 21:09:25 +0000167
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +0000168 *internal-wordlist*
Bram Moolenaar1f8a5f02005-07-01 22:41:52 +0000169The internal word list is used for all buffers where 'spell' is set. It is
170not stored, it is lost when you exit Vim. It is also cleared when 'encoding'
171is set.
172
Bram Moolenaar82cf9b62005-06-07 21:09:25 +0000173
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000174Finding suggestions for bad words:
Bram Moolenaarcc016f52005-12-10 20:23:46 +0000175 *z=*
176z= For the word under/after the cursor suggest correctly
Bram Moolenaard042c562005-06-30 22:04:15 +0000177 spelled words. This also works to find alternatives
178 for a word that is not highlighted as a bad word,
179 e.g., when the word after it is bad.
Bram Moolenaar7df351e2006-01-23 22:30:28 +0000180 In Visual mode the highlighted text is taken as the
181 word to be replaced.
182 The results are sorted on similarity to the word being
183 replaced.
Bram Moolenaar90915b52005-08-21 22:17:52 +0000184 This may take a long time. Hit CTRL-C when you get
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000185 bored.
Bram Moolenaar90915b52005-08-21 22:17:52 +0000186
187 If the command is used without a count the
188 alternatives are listed and you can enter the number
189 of your choice or press <Enter> if you don't want to
190 replace. You can also use the mouse to click on your
191 choice (only works if the mouse can be used in Normal
192 mode and when there are no line wraps). Click on the
193 first line (the header) to cancel.
194
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000195 The suggestions listed normally replace a highlighted
196 bad word. Sometimes they include other text, in that
197 case the replaced text is also listed after a "<".
198
Bram Moolenaar90915b52005-08-21 22:17:52 +0000199 If a count is used that suggestion is used, without
Bram Moolenaarcc016f52005-12-10 20:23:46 +0000200 prompting. For example, "1z=" always takes the first
Bram Moolenaar90915b52005-08-21 22:17:52 +0000201 suggestion.
202
203 If 'verbose' is non-zero a score will be displayed
204 with the suggestions to indicate the likeliness to the
205 badly spelled word (the higher the score the more
206 different).
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000207 When a word was replaced the redo command "." will
208 repeat the word replacement. This works like "ciw",
Bram Moolenaar6f16eb82005-08-23 21:02:42 +0000209 the good word and <Esc>. This does NOT work for Thai
210 and other languages without spaces between words.
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000211
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +0000212 *:spellr* *:spellrepall* *E752* *E753*
Bram Moolenaarcc016f52005-12-10 20:23:46 +0000213:spellr[epall] Repeat the replacement done by |z=| for all matches
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +0000214 with the replaced word in the current window.
215
Bram Moolenaar488c6512005-08-11 20:09:58 +0000216In Insert mode, when the cursor is after a badly spelled word, you can use
217CTRL-X s to find suggestions. This works like Insert mode completion. Use
218CTRL-N to use the next suggestion, CTRL-P to go back. |i_CTRL-X_s|
219
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000220The 'spellsuggest' option influences how the list of suggestions is generated
221and sorted. See |'spellsuggest'|.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000222
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +0000223The 'spellcapcheck' option is used to check the first word of a sentence
224starts with a capital. This doesn't work for the first word in the file.
225When there is a line break right after a sentence the highlighting of the next
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +0000226line may be postponed. Use |CTRL-L| when needed. Also see |set-spc-auto| for
227how it can be set automatically when 'spelllang' is set.
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +0000228
Bram Moolenaar362b44b2020-06-10 21:47:00 +0200229The 'spelloptions' option has a few more flags that influence the way spell
Bram Moolenaar71badf92023-04-22 22:40:14 +0100230checking works. For example, "camel" splits CamelCased words so that each
231part of the word is spell-checked separately.
Bram Moolenaar362b44b2020-06-10 21:47:00 +0200232
Bram Moolenaar4770d092006-01-12 23:22:24 +0000233Vim counts the number of times a good word is encountered. This is used to
234sort the suggestions: words that have been seen before get a small bonus,
235words that have been seen often get a bigger bonus. The COMMON item in the
236affix file can be used to define common words, so that this mechanism also
237works in a new or short file |spell-COMMON|.
238
Bram Moolenaard042c562005-06-30 22:04:15 +0000239==============================================================================
2402. Remarks on spell checking *spell-remarks*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000241
Bram Moolenaar6bb68362005-03-22 23:03:44 +0000242PERFORMANCE
243
Bram Moolenaard042c562005-06-30 22:04:15 +0000244Vim does on-the-fly spell checking. To make this work fast the word list is
245loaded in memory. Thus this uses a lot of memory (1 Mbyte or more). There
246might also be a noticeable delay when the word list is loaded, which happens
247when 'spell' is set and when 'spelllang' is set while 'spell' was already set.
248To minimize the delay each word list is only loaded once, it is not deleted
249when 'spelllang' is made empty or 'spell' is reset. When 'encoding' is set
250all the word lists are reloaded, thus you may notice a delay then too.
Bram Moolenaar6bb68362005-03-22 23:03:44 +0000251
252
Bram Moolenaar217ad922005-03-20 22:37:15 +0000253REGIONS
254
255A word may be spelled differently in various regions. For example, English
256comes in (at least) these variants:
257
258 en all regions
Bram Moolenaar5c5474b2005-04-19 21:40:26 +0000259 en_au Australia
Bram Moolenaar217ad922005-03-20 22:37:15 +0000260 en_ca Canada
Bram Moolenaar5c5474b2005-04-19 21:40:26 +0000261 en_gb Great Britain
262 en_nz New Zealand
263 en_us USA
Bram Moolenaar217ad922005-03-20 22:37:15 +0000264
265Words that are not used in one region but are used in another region are
Bram Moolenaar520470a2005-06-16 21:59:56 +0000266highlighted with SpellLocal |hl-SpellLocal|.
Bram Moolenaar217ad922005-03-20 22:37:15 +0000267
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000268Always use lowercase letters for the language and region names.
Bram Moolenaar217ad922005-03-20 22:37:15 +0000269
Bram Moolenaar3638c682005-06-08 22:05:14 +0000270When adding a word with |zg| or another command it's always added for all
271regions. You can change that by manually editing the 'spellfile'. See
Bram Moolenaar0dc065e2005-07-04 22:49:24 +0000272|spell-wordlist-format|. Note that the regions as specified in the files in
Bram Moolenaar16d8f872005-11-26 23:46:11 +0000273'spellfile' are only used when all entries in 'spelllang' specify the same
Bram Moolenaar0dc065e2005-07-04 22:49:24 +0000274region (not counting files specified by their .spl name).
Bram Moolenaar3638c682005-06-08 22:05:14 +0000275
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000276 *spell-german*
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000277Specific exception: For German these special regions are used:
278 de all German words accepted
279 de_de old and new spelling
280 de_19 old spelling
281 de_20 new spelling
282 de_at Austria
283 de_ch Switzerland
284
Bram Moolenaar92d640f2005-09-05 22:11:52 +0000285 *spell-russian*
286Specific exception: For Russian these special regions are used:
287 ru all Russian words accepted
288 ru_ru "IE" letter spelling
289 ru_yo "YO" letter spelling
290
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +0000291 *spell-yiddish*
292Yiddish requires using "utf-8" encoding, because of the special characters
293used. If you are using latin1 Vim will use transliterated (romanized) Yiddish
294instead. If you want to use transliterated Yiddish with utf-8 use "yi-tr".
295In a table:
296 'encoding' 'spelllang'
297 utf-8 yi Yiddish
298 latin1 yi transliterated Yiddish
299 utf-8 yi-tr transliterated Yiddish
300
Bram Moolenaarcc63c642013-11-12 04:44:01 +0100301 *spell-cjk*
302Chinese, Japanese and other East Asian characters are normally marked as
303errors, because spell checking of these characters is not supported. If
304'spelllang' includes "cjk", these characters are not marked as errors. This
305is useful when editing text with spell checking while some Asian words are
306present.
307
Bram Moolenaar217ad922005-03-20 22:37:15 +0000308
Bram Moolenaar3b506942005-06-23 22:36:45 +0000309SPELL FILES *spell-load*
Bram Moolenaar217ad922005-03-20 22:37:15 +0000310
311Vim searches for spell files in the "spell" subdirectory of the directories in
Bram Moolenaar3638c682005-06-08 22:05:14 +0000312'runtimepath'. The name is: LL.EEE.spl, where:
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000313 LL the language name
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000314 EEE the value of 'encoding'
Bram Moolenaar217ad922005-03-20 22:37:15 +0000315
Bram Moolenaar3b506942005-06-23 22:36:45 +0000316The value for "LL" comes from 'spelllang', but excludes the region name.
317Examples:
318 'spelllang' LL ~
319 en_us en
320 en-rare en-rare
321 medical_ca medical
322
Bram Moolenaar3638c682005-06-08 22:05:14 +0000323Only the first file is loaded, the one that is first in 'runtimepath'. If
324this succeeds then additionally files with the name LL.EEE.add.spl are loaded.
325All the ones that are found are used.
326
Bram Moolenaar1ef15e32006-02-01 21:56:25 +0000327If no spell file is found the |SpellFileMissing| autocommand event is
328triggered. This may trigger the |spellfile.vim| plugin to offer you
329downloading the spell file.
330
Bram Moolenaar0d9c26d2005-07-02 23:19:16 +0000331Additionally, the files related to the names in 'spellfile' are loaded. These
332are the files that |zg| and |zw| add good and wrong words to.
Bram Moolenaar3b506942005-06-23 22:36:45 +0000333
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000334Exceptions:
335- Vim uses "latin1" when 'encoding' is "iso-8859-15". The euro sign doesn't
336 matter for spelling.
337- When no spell file for 'encoding' is found "ascii" is tried. This only
338 works for languages where nearly all words are ASCII, such as English. It
339 helps when 'encoding' is not "latin1", such as iso-8859-2, and English text
Bram Moolenaar3638c682005-06-08 22:05:14 +0000340 is being edited. For the ".add" files the same name as the found main
341 spell file is used.
342
343For example, with these values:
Bram Moolenaar8024f932020-01-14 19:29:13 +0100344 'runtimepath' is "~/.vim,/usr/share/vim82,~/.vim/after"
Bram Moolenaar3638c682005-06-08 22:05:14 +0000345 'encoding' is "iso-8859-2"
346 'spelllang' is "pl"
347
348Vim will look for:
3491. ~/.vim/spell/pl.iso-8859-2.spl
Bram Moolenaar8024f932020-01-14 19:29:13 +01003502. /usr/share/vim82/spell/pl.iso-8859-2.spl
Bram Moolenaar3638c682005-06-08 22:05:14 +00003513. ~/.vim/spell/pl.iso-8859-2.add.spl
Bram Moolenaar8024f932020-01-14 19:29:13 +01003524. /usr/share/vim82/spell/pl.iso-8859-2.add.spl
Bram Moolenaar3638c682005-06-08 22:05:14 +00003535. ~/.vim/after/spell/pl.iso-8859-2.add.spl
354
355This assumes 1. is not found and 2. is found.
356
357If 'encoding' is "latin1" Vim will look for:
3581. ~/.vim/spell/pl.latin1.spl
Bram Moolenaar8024f932020-01-14 19:29:13 +01003592. /usr/share/vim82/spell/pl.latin1.spl
Bram Moolenaar3638c682005-06-08 22:05:14 +00003603. ~/.vim/after/spell/pl.latin1.spl
3614. ~/.vim/spell/pl.ascii.spl
Bram Moolenaar8024f932020-01-14 19:29:13 +01003625. /usr/share/vim82/spell/pl.ascii.spl
Bram Moolenaar3638c682005-06-08 22:05:14 +00003636. ~/.vim/after/spell/pl.ascii.spl
364
365This assumes none of them are found (Polish doesn't make sense when leaving
366out the non-ASCII characters).
Bram Moolenaar217ad922005-03-20 22:37:15 +0000367
Bram Moolenaar6bb68362005-03-22 23:03:44 +0000368Spelling for EBCDIC is currently not supported.
369
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000370A spell file might not be available in the current 'encoding'. See
371|spell-mkspell| about how to create a spell file. Converting a spell file
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000372with "iconv" will NOT work!
Bram Moolenaar217ad922005-03-20 22:37:15 +0000373
Bram Moolenaar81af9252010-12-10 20:35:50 +0100374Note: on VMS ".{enc}.spl" is changed to "_{enc}.spl" to avoid trouble with
375filenames.
376
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000377 *spell-sug-file* *E781*
Bram Moolenaar4770d092006-01-12 23:22:24 +0000378If there is a file with exactly the same name as the ".spl" file but ending in
379".sug", that file will be used for giving better suggestions. It isn't loaded
380before suggestions are made to reduce memory use.
381
Bram Moolenaara40ceaf2006-01-13 22:35:40 +0000382 *E758* *E759* *E778* *E779* *E780* *E782*
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000383When loading a spell file Vim checks that it is properly formatted. If you
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000384get an error the file may be truncated, modified or intended for another Vim
385version.
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000386
Bram Moolenaar6bb68362005-03-22 23:03:44 +0000387
Bram Moolenaar87b5ca52006-03-04 21:55:31 +0000388SPELLFILE CLEANUP *spellfile-cleanup*
389
390The |zw| command turns existing entries in 'spellfile' into comment lines.
391This avoids having to write a new file every time, but results in the file
392only getting longer, never shorter. To clean up the comment lines in all
393".add" spell files do this: >
394 :runtime spell/cleanadd.vim
395
396This deletes all comment lines, except the ones that start with "##". Use
397"##" lines to add comments that you want to keep.
398
399You can invoke this script as often as you like. A variable is provided to
400skip updating files that have been changed recently. Set it to the number of
401seconds that has passed since a file was changed before it will be cleaned.
402For example, to clean only files that were not changed in the last hour: >
403 let g:spell_clean_limit = 60 * 60
404The default is one second.
405
406
Bram Moolenaar6bb68362005-03-22 23:03:44 +0000407WORDS
408
409Vim uses a fixed method to recognize a word. This is independent of
410'iskeyword', so that it also works in help files and for languages that
411include characters like '-' in 'iskeyword'. The word characters do depend on
412'encoding'.
413
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000414The table with word characters is stored in the main .spl file. Therefore it
415matters what the current locale is when generating it! A .add.spl file does
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000416not contain a word table though.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000417
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000418For a word that starts with a digit the digit is ignored, unless the word as a
419whole is recognized. Thus if "3D" is a word and "D" is not then "3D" is
420recognized as a word, but if "3D" is not a word then only the "D" is marked as
421bad. Hex numbers in the form 0x12ab and 0X12AB are recognized.
Bram Moolenaar6bb68362005-03-22 23:03:44 +0000422
423
Bram Moolenaar30abd282005-06-22 22:35:10 +0000424WORD COMBINATIONS
425
426It is possible to spell-check words that include a space. This is used to
427recognize words that are invalid when used by themselves, e.g. for "et al.".
428It can also be used to recognize "the the" and highlight it.
429
430The number of spaces is irrelevant. In most cases a line break may also
431appear. However, this makes it difficult to find out where to start checking
432for spelling mistakes. When you make a change to one line and only that line
433is redrawn Vim won't look in the previous line, thus when "et" is at the end
434of the previous line "al." will be flagged as an error. And when you type
435"the<CR>the" the highlighting doesn't appear until the first line is redrawn.
436Use |CTRL-L| to redraw right away. "[s" will also stop at a word combination
437with a line break.
438
439When encountering a line break Vim skips characters such as '*', '>' and '"',
440so that comments in C, shell and Vim code can be spell checked.
441
442
Bram Moolenaar9d0ec2e2005-04-20 19:45:58 +0000443SYNTAX HIGHLIGHTING *spell-syntax*
Bram Moolenaar6bb68362005-03-22 23:03:44 +0000444
445Files that use syntax highlighting can specify where spell checking should be
446done:
447
Bram Moolenaar3638c682005-06-08 22:05:14 +00004481. everywhere default
4492. in specific items use "contains=@Spell"
4503. everywhere but specific items use "contains=@NoSpell"
Bram Moolenaar6bb68362005-03-22 23:03:44 +0000451
Bram Moolenaar3638c682005-06-08 22:05:14 +0000452For the second method adding the @NoSpell cluster will disable spell checking
453again. This can be used, for example, to add @Spell to the comments of a
454program, and add @NoSpell for items that shouldn't be checked.
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000455Also see |:syn-spell| for text that is not in a syntax item.
Bram Moolenaar6bb68362005-03-22 23:03:44 +0000456
Bram Moolenaar30abd282005-06-22 22:35:10 +0000457
458VIM SCRIPTS
459
460If you want to write a Vim script that does something with spelling, you may
461find these functions useful:
462
463 spellbadword() find badly spelled word at the cursor
464 spellsuggest() get list of spelling suggestions
Bram Moolenaard042c562005-06-30 22:04:15 +0000465 soundfold() get the sound-a-like version of a word
Bram Moolenaar30abd282005-06-22 22:35:10 +0000466
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +0000467
468SETTING 'spellcapcheck' AUTOMATICALLY *set-spc-auto*
469
470After the 'spelllang' option has been set successfully, Vim will source the
471files "spell/LANG.vim" in 'runtimepath'. "LANG" is the value of 'spelllang'
472up to the first comma, dot or underscore. This can be used to set options
473specifically for the language, especially 'spellcapcheck'.
474
475The distribution includes a few of these files. Use this command to see what
476they do: >
477 :next $VIMRUNTIME/spell/*.vim
478
479Note that the default scripts don't set 'spellcapcheck' if it was changed from
480the default value. This assumes the user prefers another value then.
481
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000482
483DOUBLE SCORING *spell-double-scoring*
484
485The 'spellsuggest' option can be used to select "double" scoring. This
486mechanism is based on the principle that there are two kinds of spelling
487mistakes:
488
4891. You know how to spell the word, but mistype something. This results in a
490 small editing distance (character swapped/omitted/inserted) and possibly a
491 word that sounds completely different.
492
4932. You don't know how to spell the word and type something that sounds right.
494 The edit distance can be big but the word is similar after sound-folding.
495
496Since scores for these two mistakes will be very different we use a list
497for each and mix them.
498
499The sound-folding is slow and people that know the language won't make the
500second kind of mistakes. Therefore 'spellsuggest' can be set to select the
501preferred method for scoring the suggestions.
502
Bram Moolenaar217ad922005-03-20 22:37:15 +0000503==============================================================================
Bram Moolenaard042c562005-06-30 22:04:15 +00005043. Generating a spell file *spell-mkspell*
Bram Moolenaar217ad922005-03-20 22:37:15 +0000505
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000506Vim uses a binary file format for spelling. This greatly speeds up loading
507the word list and keeps it small.
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000508 *.aff* *.dic* *Myspell*
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000509You can create a Vim spell file from the .aff and .dic files that Myspell
Bram Moolenaar6aa8cea2017-06-05 14:44:35 +0200510uses. Myspell is used by OpenOffice.org and Mozilla. The OpenOffice .oxt
Bram Moolenaar00a927d2010-05-14 23:24:24 +0200511files are zip files which contain the .aff and .dic files. You should be able
512to find them here:
513 http://extensions.services.openoffice.org/dictionary
514The older, OpenOffice 2 files may be used if this doesn't work:
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000515 http://wiki.services.openoffice.org/wiki/Dictionaries
Bram Moolenaar30abd282005-06-22 22:35:10 +0000516You can also use a plain word list. The results are the same, the choice
Bram Moolenaard042c562005-06-30 22:04:15 +0000517depends on what word lists you can find.
Bram Moolenaar217ad922005-03-20 22:37:15 +0000518
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000519If you install Aap (from www.a-a-p.org) you can use the recipes in the
520runtime/spell/??/ directories. Aap will take care of downloading the files,
521apply patches needed for Vim and build the .spl file.
522
Bram Moolenaare13305e2005-06-19 22:54:15 +0000523Make sure your current locale is set properly, otherwise Vim doesn't know what
524characters are upper/lower case letters. If the locale isn't available (e.g.,
525when using an MS-Windows codepage on Unix) add tables to the .aff file
Bram Moolenaar3b506942005-06-23 22:36:45 +0000526|spell-affix-chars|. If the .aff file doesn't define a table then the word
527table of the currently active spelling is used. If spelling is not active
528then Vim will try to guess.
Bram Moolenaare13305e2005-06-19 22:54:15 +0000529
Bram Moolenaar3b506942005-06-23 22:36:45 +0000530 *:mksp* *:mkspell*
531:mksp[ell][!] [-ascii] {outname} {inname} ...
Bram Moolenaar16d8f872005-11-26 23:46:11 +0000532 Generate a Vim spell file from word lists. Example: >
Bram Moolenaard042c562005-06-30 22:04:15 +0000533 :mkspell /tmp/nl nl_NL.words
Bram Moolenaar3b506942005-06-23 22:36:45 +0000534< *E751*
Bram Moolenaar82cf9b62005-06-07 21:09:25 +0000535 When {outname} ends in ".spl" it is used as the output
536 file name. Otherwise it should be a language name,
Bram Moolenaar3b506942005-06-23 22:36:45 +0000537 such as "en", without the region name. The file
538 written will be "{outname}.{encoding}.spl", where
539 {encoding} is the value of the 'encoding' option.
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000540
Bram Moolenaard042c562005-06-30 22:04:15 +0000541 When the output file already exists [!] must be used
Bram Moolenaar520470a2005-06-16 21:59:56 +0000542 to overwrite it.
543
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000544 When the [-ascii] argument is present, words with
545 non-ascii characters are skipped. The resulting file
Bram Moolenaar82cf9b62005-06-07 21:09:25 +0000546 ends in "ascii.spl".
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000547
548 The input can be the Myspell format files {inname}.aff
549 and {inname}.dic. If {inname}.aff does not exist then
550 {inname} is used as the file name of a plain word
551 list.
552
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000553 Multiple {inname} arguments can be given to combine
554 regions into one Vim spell file. Example: >
555 :mkspell ~/.vim/spell/en /tmp/en_US /tmp/en_CA /tmp/en_AU
556< This combines the English word lists for US, CA and AU
557 into one en.spl file.
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000558 Up to eight regions can be combined. *E754* *E755*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000559 The REP and SAL items of the first .aff file where
Bram Moolenaar6f16eb82005-08-23 21:02:42 +0000560 they appear are used. |spell-REP| |spell-SAL|
Bram Moolenaard58e9292011-02-09 17:07:58 +0100561 *E845*
Bram Moolenaar30abd282005-06-22 22:35:10 +0000562 This command uses a lot of memory, required to find
Bram Moolenaar8aff23a2005-08-19 20:40:30 +0000563 the optimal word tree (Polish, Italian and Hungarian
564 require several hundred Mbyte). The final result will
565 be much smaller, because compression is used. To
566 avoid running out of memory compression will be done
567 now and then. This can be tuned with the 'mkspellmem'
568 option.
Bram Moolenaar30abd282005-06-22 22:35:10 +0000569
Bram Moolenaard042c562005-06-30 22:04:15 +0000570 After the spell file was written and it was being used
571 in a buffer it will be reloaded automatically.
Bram Moolenaar45eeb132005-06-06 21:59:07 +0000572
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000573:mksp[ell] [-ascii] {name}.{enc}.add
574 Like ":mkspell" above, using {name}.{enc}.add as the
Bram Moolenaard042c562005-06-30 22:04:15 +0000575 input file and producing an output file in the same
576 directory that has ".spl" appended.
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000577
578:mksp[ell] [-ascii] {name}
579 Like ":mkspell" above, using {name} as the input file
Bram Moolenaard042c562005-06-30 22:04:15 +0000580 and producing an output file in the same directory
581 that has ".{enc}.spl" appended.
Bram Moolenaar82cf9b62005-06-07 21:09:25 +0000582
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000583Vim will report the number of duplicate words. This might be a mistake in the
584list of words. But sometimes it is used to have different prefixes and
585suffixes for the same basic word to avoid them combining (e.g. Czech uses
Bram Moolenaar8aff23a2005-08-19 20:40:30 +0000586this). If you want Vim to report all duplicate words set the 'verbose'
587option.
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000588
Bram Moolenaar82cf9b62005-06-07 21:09:25 +0000589Since you might want to change a Myspell word list for use with Vim the
590following procedure is recommended:
Bram Moolenaar217ad922005-03-20 22:37:15 +0000591
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00005921. Obtain the xx_YY.aff and xx_YY.dic files from Myspell.
5932. Make a copy of these files to xx_YY.orig.aff and xx_YY.orig.dic.
5943. Change the xx_YY.aff and xx_YY.dic files to remove bad words, add missing
Bram Moolenaar0cb032e2005-04-23 20:52:00 +0000595 words, define word characters with FOL/LOW/UPP, etc. The distributed
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000596 "*.diff" files can be used.
Bram Moolenaard042c562005-06-30 22:04:15 +00005974. Start Vim with the right locale and use |:mkspell| to generate the Vim
598 spell file.
5995. Try out the spell file with ":set spell spelllang=xx" if you wrote it in
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000600 a spell directory in 'runtimepath', or ":set spelllang=xx.enc.spl" if you
Bram Moolenaard042c562005-06-30 22:04:15 +0000601 wrote it somewhere else.
Bram Moolenaar217ad922005-03-20 22:37:15 +0000602
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000603When the Myspell files are updated you can merge the differences:
Bram Moolenaar0cb032e2005-04-23 20:52:00 +00006041. Obtain the new Myspell files as xx_YY.new.aff and xx_UU.new.dic.
6052. Use Vimdiff to see what changed: >
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000606 vimdiff xx_YY.orig.dic xx_YY.new.dic
Bram Moolenaar0cb032e2005-04-23 20:52:00 +00006073. Take over the changes you like in xx_YY.dic.
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000608 You may also need to change xx_YY.aff.
Bram Moolenaard09091d2019-01-17 16:07:22 +01006094. Rename xx_YY.new.dic to xx_YY.orig.dic and xx_YY.new.aff to xx_YY.orig.aff.
Bram Moolenaar217ad922005-03-20 22:37:15 +0000610
Bram Moolenaar3b506942005-06-23 22:36:45 +0000611
Bram Moolenaar8aff23a2005-08-19 20:40:30 +0000612SPELL FILE VERSIONS *E770* *E771* *E772*
613
614Spell checking is a relatively new feature in Vim, thus it's possible that the
615.spl file format will be changed to support more languages. Vim will check
616the validity of the spell file and report anything wrong.
617
618 E771: Old spell file, needs to be updated ~
619This spell file is older than your Vim. You need to update the .spl file.
620
621 E772: Spell file is for newer version of Vim ~
622This means the spell file was made for a later version of Vim. You need to
623update Vim.
624
625 E770: Unsupported section in spell file ~
626This means the spell file was made for a later version of Vim and contains a
627section that is required for the spell file to work. In this case it's
628probably a good idea to upgrade your Vim.
629
630
Bram Moolenaar3b506942005-06-23 22:36:45 +0000631SPELL FILE DUMP
632
633If for some reason you want to check what words are supported by the currently
634used spelling files, use this command:
635
636 *:spelldump* *:spelld*
637:spelld[ump] Open a new window and fill it with all currently valid
Bram Moolenaarac6e65f2005-08-29 22:25:38 +0000638 words. Compound words are not included.
Bram Moolenaard042c562005-06-30 22:04:15 +0000639 Note: For some languages the result may be enormous,
640 causing Vim to run out of memory.
Bram Moolenaar3b506942005-06-23 22:36:45 +0000641
Bram Moolenaar4770d092006-01-12 23:22:24 +0000642:spelld[ump]! Like ":spelldump" and include the word count. This is
643 the number of times the word was found while
644 updating the screen. Words that are in COMMON items
645 get a starting count of 10.
646
Bram Moolenaar3b506942005-06-23 22:36:45 +0000647The format of the word list is used |spell-wordlist-format|. You should be
648able to read it with ":mkspell" to generate one .spl file that includes all
649the words.
650
Bram Moolenaar1f8a5f02005-07-01 22:41:52 +0000651When all entries to 'spelllang' use the same regions or no regions at all then
652the region information is included in the dumped words. Otherwise only words
653for the current region are included and no "/regions" line is generated.
Bram Moolenaar3b506942005-06-23 22:36:45 +0000654
Bram Moolenaard042c562005-06-30 22:04:15 +0000655Comment lines with the name of the .spl file are used as a header above the
656words that were generated from that .spl file.
Bram Moolenaar3b506942005-06-23 22:36:45 +0000657
Bram Moolenaar1ef15e32006-02-01 21:56:25 +0000658
659SPELL FILE MISSING *spell-SpellFileMissing* *spellfile.vim*
660
661If the spell file for the language you are using is not available, you will
662get an error message. But if the "spellfile.vim" plugin is active it will
663offer you to download the spell file. Just follow the instructions, it will
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +0000664ask you where to write the file (there must be a writable directory in
665'runtimepath' for this).
Bram Moolenaar1ef15e32006-02-01 21:56:25 +0000666
667The plugin has a default place where to look for spell files, on the Vim ftp
Bram Moolenaar7ff78462020-07-10 22:00:53 +0200668server. The protocol used is SSL (https://) for security. If you want to use
669another location or another protocol, set the g:spellfile_URL variable to the
670directory that holds the spell files. You can use http:// or ftp://, but you
671are taking a security risk then. The |netrw| plugin is used for getting the
672file, look there for the specific syntax of the URL. Example: >
673 let g:spellfile_URL = 'https://ftp.nluug.nl/vim/runtime/spell'
Bram Moolenaar1ef15e32006-02-01 21:56:25 +0000674You may need to escape special characters.
675
676The plugin will only ask about downloading a language once. If you want to
677try again anyway restart Vim, or set g:spellfile_URL to another value (e.g.,
678prepend a space).
679
680To avoid using the "spellfile.vim" plugin do this in your vimrc file: >
681
682 let loaded_spellfile_plugin = 1
683
684Instead of using the plugin you can define a |SpellFileMissing| autocommand to
685handle the missing file yourself. You can use it like this: >
686
687 :au SpellFileMissing * call Download_spell_file(expand('<amatch>'))
688
689Thus the <amatch> item contains the name of the language. Another important
690value is 'encoding', since every encoding has its own spell file. With two
691exceptions:
692- For ISO-8859-15 (latin9) the name "latin1" is used (the encodings only
693 differ in characters not used in dictionary words).
694- The name "ascii" may also be used for some languages where the words use
695 only ASCII letters for most of the words.
696
697The default "spellfile.vim" plugin uses this autocommand, if you define your
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000698autocommand afterwards you may want to use ":au! SpellFileMissing" to overrule
Bram Moolenaar1ef15e32006-02-01 21:56:25 +0000699it. If you define your autocommand before the plugin is loaded it will notice
700this and not do anything.
Bram Moolenaar34e0bfa2007-05-10 18:44:18 +0000701 *E797*
702Note that the SpellFileMissing autocommand must not change or destroy the
703buffer the user was editing.
Bram Moolenaar1ef15e32006-02-01 21:56:25 +0000704
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000705==============================================================================
Bram Moolenaard042c562005-06-30 22:04:15 +00007064. Spell file format *spell-file-format*
Bram Moolenaar217ad922005-03-20 22:37:15 +0000707
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000708This is the format of the files that are used by the person who creates and
709maintains a word list.
Bram Moolenaar217ad922005-03-20 22:37:15 +0000710
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000711Note that we avoid the word "dictionary" here. That is because the goal of
712spell checking differs from writing a dictionary (as in the book). For
Bram Moolenaar16d8f872005-11-26 23:46:11 +0000713spelling we need a list of words that are OK, thus should not be highlighted.
714Person and company names will not appear in a dictionary, but do appear in a
715word list. And some old words are rarely used while they are common
716misspellings. These do appear in a dictionary but not in a word list.
Bram Moolenaar217ad922005-03-20 22:37:15 +0000717
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +0000718There are two formats: A straight list of words and a list using affix
Bram Moolenaard042c562005-06-30 22:04:15 +0000719compression. The files with affix compression are used by Myspell (Mozilla
720and OpenOffice.org). This requires two files, one with .aff and one with .dic
721extension.
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000722
723
Bram Moolenaard042c562005-06-30 22:04:15 +0000724FORMAT OF STRAIGHT WORD LIST *spell-wordlist-format*
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000725
Bram Moolenaar82cf9b62005-06-07 21:09:25 +0000726The words must appear one per line. That is all that is required.
Bram Moolenaard042c562005-06-30 22:04:15 +0000727
Bram Moolenaar82cf9b62005-06-07 21:09:25 +0000728Additionally the following items are recognized:
Bram Moolenaard042c562005-06-30 22:04:15 +0000729
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000730- Empty and blank lines are ignored.
Bram Moolenaard042c562005-06-30 22:04:15 +0000731
Bram Moolenaar4770d092006-01-12 23:22:24 +0000732 # comment ~
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000733- Lines starting with a # are ignored (comment lines).
Bram Moolenaard042c562005-06-30 22:04:15 +0000734
Bram Moolenaar4770d092006-01-12 23:22:24 +0000735 /encoding=utf-8 ~
Bram Moolenaar45eeb132005-06-06 21:59:07 +0000736- A line starting with "/encoding=", before any word, specifies the encoding
737 of the file. After the second '=' comes an encoding name. This tells Vim
Bram Moolenaard042c562005-06-30 22:04:15 +0000738 to setup conversion from the specified encoding to 'encoding'. Thus you can
739 use one word list for several target encodings.
740
Bram Moolenaar4770d092006-01-12 23:22:24 +0000741 /regions=usca ~
Bram Moolenaar3638c682005-06-08 22:05:14 +0000742- A line starting with "/regions=" specifies the region names that are
743 supported. Each region name must be two ASCII letters. The first one is
744 region 1. Thus "/regions=usca" has region 1 "us" and region 2 "ca".
Bram Moolenaard042c562005-06-30 22:04:15 +0000745 In an addition word list the region names should be equal to the main word
746 list!
747
Bram Moolenaar82cf9b62005-06-07 21:09:25 +0000748- Other lines starting with '/' are reserved for future use. The ones that
Bram Moolenaar4770d092006-01-12 23:22:24 +0000749 are not recognized are ignored. You do get a warning message, so that you
750 know something won't work.
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000751
Bram Moolenaar1f8a5f02005-07-01 22:41:52 +0000752- A "/" may follow the word with the following items:
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000753 = Case must match exactly.
Bram Moolenaar1f8a5f02005-07-01 22:41:52 +0000754 ? Rare word.
755 ! Bad (wrong) word.
Bram Moolenaar01164a62017-11-02 22:58:42 +0100756 1 to 9 A region in which the word is valid. If no regions are
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000757 specified the word is valid in all regions.
Bram Moolenaar1f8a5f02005-07-01 22:41:52 +0000758
Bram Moolenaar3638c682005-06-08 22:05:14 +0000759Example:
760
761 # This is an example word list comment
762 /encoding=latin1 encoding of the file
763 /regions=uscagb regions "us", "ca" and "gb"
764 example word for all regions
Bram Moolenaar1f8a5f02005-07-01 22:41:52 +0000765 blah/12 word for regions "us" and "ca"
766 vim/! bad word
767 Campbell/?3 rare word in region 3 "gb"
768 's mornings/= keep-case word
Bram Moolenaar3638c682005-06-08 22:05:14 +0000769
Bram Moolenaar0dc065e2005-07-04 22:49:24 +0000770Note that when "/=" is used the same word with all upper-case letters is not
771accepted. This is different from a word with mixed case that is automatically
772marked as keep-case, those words may appear in all upper-case letters.
773
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000774
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000775FORMAT WITH .AFF AND .DIC FILES *aff-dic-format*
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000776
Bram Moolenaar4770d092006-01-12 23:22:24 +0000777There are two files: the basic word list and an affix file. The affix file
778specifies settings for the language and can contain affixes. The affixes are
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000779used to modify the basic words to get the full word list. This significantly
780reduces the number of words, especially for a language like Polish. This is
781called affix compression.
Bram Moolenaar217ad922005-03-20 22:37:15 +0000782
Bram Moolenaar4770d092006-01-12 23:22:24 +0000783The basic word list and the affix file are combined with the ":mkspell"
784command and results in a binary spell file. All the preprocessing has been
785done, thus this file loads fast. The binary spell file format is described in
786the source code (src/spell.c). But only developers need to know about it.
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000787
788The preprocessing also allows us to take the Myspell language files and modify
789them before the Vim word list is made. The tools for this can be found in the
790"src/spell" directory.
791
Bram Moolenaar6f16eb82005-08-23 21:02:42 +0000792The format for the affix and word list files is based on what Myspell uses
793(the spell checker of Mozilla and OpenOffice.org). A description can be found
794here:
Milly89872f52024-10-05 17:16:18 +0200795 http://lingucomponent.openoffice.org/affix.readme
Bram Moolenaar6f16eb82005-08-23 21:02:42 +0000796Note that affixes are case sensitive, this isn't obvious from the description.
797
Bram Moolenaar6f16eb82005-08-23 21:02:42 +0000798Vim supports quite a few extras. They are described below |spell-affix-vim|.
799Attempts have been made to keep this compatible with other spell checkers, so
Bram Moolenaar4770d092006-01-12 23:22:24 +0000800that the same files can often be used. One other project that offers more
801than Myspell is Hunspell ( http://hunspell.sf.net ).
Bram Moolenaar6f16eb82005-08-23 21:02:42 +0000802
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000803
Bram Moolenaar3638c682005-06-08 22:05:14 +0000804WORD LIST FORMAT *spell-dic-format*
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000805
Bram Moolenaar4770d092006-01-12 23:22:24 +0000806A short example, with line numbers:
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000807
Bram Moolenaar4770d092006-01-12 23:22:24 +0000808 1 1234 ~
809 2 aan ~
810 3 Als ~
811 4 Etten-Leur ~
812 5 et al. ~
813 6 's-Gravenhage ~
814 7 's-Gravenhaags ~
815 8 # word that differs between regions ~
816 9 kado/1 ~
817 10 cadeau/2 ~
818 11 TCP,IP ~
819 12 /the S affix may add a 's' ~
820 13 bedel/S ~
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000821
Bram Moolenaar82cf9b62005-06-07 21:09:25 +0000822The first line contains the number of words. Vim ignores it, but you do get
823an error message if it's not there. *E760*
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000824
Bram Moolenaar4770d092006-01-12 23:22:24 +0000825What follows is one word per line. White space at the end of the line is
826ignored, all other white space matters. The encoding is specified in the
827affix file |spell-SET|.
828
829Comment lines start with '#' or '/'. See the example lines 8 and 12. Note
830that putting a comment after a word is NOT allowed:
831
832 someword # comment that causes an error! ~
833
834After the word there is an optional slash and flags. Most of these flags are
835letters that indicate the affixes that can be used with this word. These are
836specified with SFX and PFX lines in the .aff file, see |spell-SFX| and
837|spell-PFX|. Vim allows using other flag types with the FLAG item in the
838affix file |spell-FLAG|.
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000839
840When the word only has lower-case letters it will also match with the word
841starting with an upper-case letter.
842
843When the word includes an upper-case letter, this means the upper-case letter
844is required at this position. The same word with a lower-case letter at this
845position will not match. When some of the other letters are upper-case it will
846not match either.
847
Bram Moolenaar4770d092006-01-12 23:22:24 +0000848The word with all upper-case characters will always be OK,
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000849
850 word list matches does not match ~
851 als als Als ALS ALs AlS aLs aLS
852 Als Als ALS als ALs AlS aLs aLS
853 ALS ALS als Als ALs AlS aLs aLS
854 AlS AlS ALS als Als ALs aLs aLS
855
Bram Moolenaar1cbe5f72005-12-29 22:51:09 +0000856The KEEPCASE affix ID can be used to specifically match a word with identical
857case only, see below |spell-KEEPCASE|.
Bram Moolenaar45eeb132005-06-06 21:59:07 +0000858
Bram Moolenaar4770d092006-01-12 23:22:24 +0000859Note: in line 5 to 7 non-word characters are used. You can include any
860character in a word. When checking the text a word still only matches when it
861appears with a non-word character before and after it. For Myspell a word
862starting with a non-word character probably won't work.
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000863
Bram Moolenaar6f16eb82005-08-23 21:02:42 +0000864In line 12 the word "TCP/IP" is defined. Since the slash has a special
865meaning the comma is used instead. This is defined with the SLASH item in the
Bram Moolenaar4770d092006-01-12 23:22:24 +0000866affix file, see |spell-SLASH|. Note that without this SLASH item the word
867will be "TCP,IP".
Bram Moolenaar6f16eb82005-08-23 21:02:42 +0000868
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000869
Bram Moolenaar4770d092006-01-12 23:22:24 +0000870AFFIX FILE FORMAT *spell-aff-format* *spell-affix-vim*
Bram Moolenaar0dc065e2005-07-04 22:49:24 +0000871
Bram Moolenaar4770d092006-01-12 23:22:24 +0000872 *spell-affix-comment*
873Comment lines in the .aff file start with a '#':
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000874
Bram Moolenaar4770d092006-01-12 23:22:24 +0000875 # comment line ~
876
Bram Moolenaar9f94b052008-11-30 20:12:46 +0000877Items with a fixed number of arguments can be followed by a comment. But only
878if none of the arguments can contain white space. The comment must start with
879a "#" character. Example:
880
881 KEEPCASE = # fix case for words with this flag ~
Bram Moolenaar4770d092006-01-12 23:22:24 +0000882
883
884ENCODING *spell-SET*
885
886The affix file can be in any encoding that is supported by "iconv". However,
887in some cases the current locale should also be set properly at the time
888|:mkspell| is invoked. Adding FOL/LOW/UPP lines removes this requirement
889|spell-FOL|.
890
891The encoding should be specified before anything where the encoding matters.
892The encoding applies both to the affix file and the dictionary file. It is
893done with a SET line:
894
895 SET utf-8 ~
896
897The encoding can be different from the value of the 'encoding' option at the
898time ":mkspell" is used. Vim will then convert everything to 'encoding' and
899generate a spell file for 'encoding'. If some of the used characters to not
900fit in 'encoding' you will get an error message.
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000901 *spell-affix-mbyte*
Bram Moolenaar207f0092020-08-30 17:20:20 +0200902When using a multibyte encoding it's possible to use more different affix
Bram Moolenaar4770d092006-01-12 23:22:24 +0000903flags. But Myspell doesn't support that, thus you may not want to use it
904anyway. For compatibility use an 8-bit encoding.
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000905
Bram Moolenaare13305e2005-06-19 22:54:15 +0000906
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000907INFORMATION
908
909These entries in the affix file can be used to add information to the spell
910file. There are no restrictions on the format, but they should be in the
911right encoding.
912
913 *spell-NAME* *spell-VERSION* *spell-HOME*
914 *spell-AUTHOR* *spell-EMAIL* *spell-COPYRIGHT*
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000915 NAME Name of the language
916 VERSION 1.0.1 with fixes
Christian Brabandt1c5728e2024-05-11 11:12:40 +0200917 HOME <URL>
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000918 AUTHOR John Doe
919 EMAIL john AT Doe DOT net
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000920 COPYRIGHT LGPL
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000921
922These fields are put in the .spl file as-is. The |:spellinfo| command can be
923used to view the info.
924
925 *:spellinfo* *:spelli*
926:spelli[nfo] Display the information for the spell file(s) used for
927 the current buffer.
928
929
Bram Moolenaare13305e2005-06-19 22:54:15 +0000930CHARACTER TABLES
Bram Moolenaar0cb032e2005-04-23 20:52:00 +0000931 *spell-affix-chars*
Bram Moolenaar82cf9b62005-06-07 21:09:25 +0000932When using an 8-bit encoding the affix file should define what characters are
Bram Moolenaar4770d092006-01-12 23:22:24 +0000933word characters. This is because the system where ":mkspell" is used may not
934support a locale with this encoding and isalpha() won't work. For example
935when using "cp1250" on Unix.
Bram Moolenaar6f16eb82005-08-23 21:02:42 +0000936 *E761* *E762* *spell-FOL*
937 *spell-LOW* *spell-UPP*
Bram Moolenaar0cb032e2005-04-23 20:52:00 +0000938Three lines in the affix file are needed. Simplistic example:
939
Bram Moolenaarab943432018-03-29 18:27:07 +0200940 FOL áëñ ~
941 LOW áëñ ~
942 UPP ÁËÑ ~
Bram Moolenaar0cb032e2005-04-23 20:52:00 +0000943
944All three lines must have exactly the same number of characters.
945
946The "FOL" line specifies the case-folded characters. These are used to
947compare words while ignoring case. For most encodings this is identical to
948the lower case line.
949
950The "LOW" line specifies the characters in lower-case. Mostly it's equal to
951the "FOL" line.
952
953The "UPP" line specifies the characters with upper-case. That is, a character
954is upper-case where it's different from the character at the same position in
955"FOL".
956
Bram Moolenaarab943432018-03-29 18:27:07 +0200957An exception is made for the German sharp s ß. The upper-case version is
Bram Moolenaar6f16eb82005-08-23 21:02:42 +0000958"SS". In the FOL/LOW/UPP lines it should be included, so that it's recognized
Bram Moolenaarab943432018-03-29 18:27:07 +0200959as a word character, but use the ß character in all three.
Bram Moolenaar6f16eb82005-08-23 21:02:42 +0000960
Bram Moolenaar0cb032e2005-04-23 20:52:00 +0000961ASCII characters should be omitted, Vim always handles these in the same way.
962When the encoding is UTF-8 no word characters need to be specified.
963
964 *E763*
Bram Moolenaar3b506942005-06-23 22:36:45 +0000965Vim allows you to use spell checking for several languages in the same file.
966You can list them in the 'spelllang' option. As a consequence all spell files
967for the same encoding must use the same word characters, otherwise they can't
Bram Moolenaar22dbc772013-06-28 18:44:48 +0200968be combined without errors.
969
970If you get an E763 warning that the word tables differ you need to update your
971".spl" spell files. If you downloaded the files, get the latest version of
Bram Moolenaar8bb1c3e2014-07-04 16:43:17 +0200972all spell files you use. If you are only using one, e.g., German, then also
973download the recent English spell files. Otherwise generate the .spl file
974again with |:mkspell|. If you still get errors check the FOL, LOW and UPP
975lines in the used .aff files.
Bram Moolenaar3b506942005-06-23 22:36:45 +0000976
977The XX.ascii.spl spell file generated with the "-ascii" argument will not
978contain the table with characters, so that it can be combine with spell files
979for any encoding. The .add.spl files also do not contain the table.
Bram Moolenaar0cb032e2005-04-23 20:52:00 +0000980
Bram Moolenaare7566042005-06-17 22:00:15 +0000981
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000982MID-WORD CHARACTERS
983 *spell-midword*
984Some characters are only to be considered word characters if they are used in
985between two ordinary word characters. An example is the single quote: It is
986often used to put text in quotes, thus it can't be recognized as a word
987character, but when it appears in between word characters it must be part of
988the word. This is needed to detect a spelling error such as they'are. That
989should be they're, but since "they" and "are" are words themselves that would
990go unnoticed.
991
Bram Moolenaar4770d092006-01-12 23:22:24 +0000992These characters are defined with MIDWORD in the .aff file. Example:
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000993
994 MIDWORD '- ~
995
996
Bram Moolenaar6e7c7f32005-08-24 22:16:11 +0000997FLAG TYPES *spell-FLAG*
998
999Flags are used to specify the affixes that can be used with a word and for
1000other properties of the word. Normally single-character flags are used. This
1001limits the number of possible flags, especially for 8-bit encodings. The FLAG
1002item can be used if more affixes are to be used. Possible values:
1003
1004 FLAG long use two-character flags
1005 FLAG num use numbers, from 1 up to 65000
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00001006 FLAG caplong use one-character flags without A-Z and two-character
Bram Moolenaar6e7c7f32005-08-24 22:16:11 +00001007 flags that start with A-Z
1008
1009With "FLAG num" the numbers in a list of affixes need to be separated with a
1010comma: "234,2143,1435". This method is inefficient, but useful if the file is
1011generated with a program.
1012
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00001013When using "caplong" the two-character flags all start with a capital: "Aa",
1014"B1", "BB", etc. This is useful to use one-character flags for the most
1015common items and two-character flags for uncommon items.
Bram Moolenaar6e7c7f32005-08-24 22:16:11 +00001016
1017Note: When using utf-8 only characters up to 65000 may be used for flags.
1018
Bram Moolenaar9f94b052008-11-30 20:12:46 +00001019Note: even when using "num" or "long" the number of flags available to
1020compounding and prefixes is limited to about 250.
1021
Bram Moolenaar6e7c7f32005-08-24 22:16:11 +00001022
Bram Moolenaar76db9e02022-11-09 21:21:04 +00001023AFFIXES *spell-PFX* *spell-SFX*
1024
Bram Moolenaare13305e2005-06-19 22:54:15 +00001025The usual PFX (prefix) and SFX (suffix) lines are supported (see the Myspell
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00001026documentation or the Aspell manual:
1027http://aspell.net/man-html/Affix-Compression.html).
Bram Moolenaare13305e2005-06-19 22:54:15 +00001028
Bram Moolenaar4770d092006-01-12 23:22:24 +00001029Summary:
1030 SFX L Y 2 ~
1031 SFX L 0 re [^x] ~
1032 SFX L 0 ro x ~
1033
1034The first line is a header and has four fields:
1035 SFX {flag} {combine} {count}
1036
1037{flag} The name used for the suffix. Mostly it's a single letter,
1038 but other characters can be used, see |spell-FLAG|.
1039
1040{combine} Can be 'Y' or 'N'. When 'Y' then the word plus suffix can
1041 also have a prefix. When 'N' then a prefix is not allowed.
1042
1043{count} The number of lines following. If this is wrong you will get
1044 an error message.
1045
1046For PFX the fields are exactly the same.
1047
1048The basic format for the following lines is:
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001049 SFX {flag} {strip} {add} {condition} {extra}
Bram Moolenaar4770d092006-01-12 23:22:24 +00001050
1051{flag} Must be the same as the {flag} used in the first line.
1052
1053{strip} Characters removed from the basic word. There is no check if
1054 the characters are actually there, only the length is used (in
1055 bytes). This better match the {condition}, otherwise strange
1056 things may happen. If the {strip} length is equal to or
1057 longer than the basic word the suffix won't be used.
1058 When {strip} is 0 (zero) then nothing is stripped.
1059
1060{add} Characters added to the basic word, after removing {strip}.
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001061 Optionally there is a '/' followed by flags. The flags apply
1062 to the word plus affix. See |spell-affix-flags|
Bram Moolenaar4770d092006-01-12 23:22:24 +00001063
1064{condition} A simplistic pattern. Only when this matches with a basic
1065 word will the suffix be used for that word. This is normally
1066 for using one suffix letter with different {add} and {strip}
1067 fields for words with different endings.
1068 When {condition} is a . (dot) there is no condition.
1069 The pattern may contain:
1070 - Literal characters.
1071 - A set of characters in []. [abc] matches a, b and c.
1072 A dash is allowed for a range [a-c], but this is
1073 Vim-specific.
1074 - A set of characters that starts with a ^, meaning the
1075 complement of the specified characters. [^abc] matches any
1076 character but a, b and c.
1077
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001078{extra} Optional extra text:
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001079 # comment Comment is ignored
1080 - Hunspell uses this, ignored
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001081
Bram Moolenaar4770d092006-01-12 23:22:24 +00001082For PFX the fields are the same, but the {strip}, {add} and {condition} apply
1083to the start of the word.
1084
1085Note: Myspell ignores any extra text after the relevant info. Vim requires
1086this text to start with a "#" so that mistakes don't go unnoticed. Example:
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00001087
1088 SFX F 0 in [^i]n # Spion > Spionin ~
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001089 SFX F 0 nen in # Bauerin > Bauerinnen ~
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00001090
Bram Moolenaarb4b43bb2014-09-19 16:04:11 +02001091However, to avoid lots of errors in affix files written for Myspell, you can
1092add the IGNOREEXTRA flag.
1093
Bram Moolenaar81f1ecb2005-08-25 21:27:31 +00001094Apparently Myspell allows an affix name to appear more than once. Since this
1095might also be a mistake, Vim checks for an extra "S". The affix files for
1096Myspell that use this feature apparently have this flag. Example:
1097
1098 SFX a Y 1 S ~
1099 SFX a 0 an . ~
1100
1101 SFX a Y 2 S ~
1102 SFX a 0 en . ~
1103 SFX a 0 on . ~
1104
Bram Moolenaar4770d092006-01-12 23:22:24 +00001105
1106AFFIX FLAGS *spell-affix-flags*
1107
1108This is a feature that comes from Hunspell: The affix may specify flags. This
1109works similar to flags specified on a basic word. The flags apply to the
Bram Moolenaar8dff8182006-04-06 20:18:50 +00001110basic word plus the affix (but there are restrictions). Example:
Bram Moolenaar4770d092006-01-12 23:22:24 +00001111
1112 SFX S Y 1 ~
1113 SFX S 0 s . ~
1114
1115 SFX A Y 1 ~
1116 SFX A 0 able/S . ~
1117
1118When the dictionary file contains "drink/AS" then these words are possible:
1119
1120 drink
1121 drinks uses S suffix
1122 drinkable uses A suffix
1123 drinkables uses A suffix and then S suffix
1124
1125Generally the flags of the suffix are added to the flags of the basic word,
1126both are used for the word plus suffix. But the flags of the basic word are
1127only used once for affixes, except that both one prefix and one suffix can be
1128used when both support combining.
1129
1130Specifically, the affix flags can be used for:
Bram Moolenaar8dff8182006-04-06 20:18:50 +00001131- Suffixes on suffixes, as in the example above. This works once, thus you
1132 can have two suffixes on a word (plus one prefix).
Bram Moolenaar4770d092006-01-12 23:22:24 +00001133- Making the word with the affix rare, by using the |spell-RARE| flag.
1134- Exclude the word with the affix from compounding, by using the
1135 |spell-COMPOUNDFORBIDFLAG| flag.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001136- Allow the word with the affix to be part of a compound word on the side of
1137 the affix with the |spell-COMPOUNDPERMITFLAG|.
Bram Moolenaar8dff8182006-04-06 20:18:50 +00001138- Use the NEEDCOMPOUND flag: word plus affix can only be used as part of a
1139 compound word. |spell-NEEDCOMPOUND|
1140- Compound flags: word plus affix can be part of a compound word at the end,
1141 middle, start, etc. The flags are combined with the flags of the basic
1142 word. |spell-compound|
1143- NEEDAFFIX: another affix is needed to make a valid word.
1144- CIRCUMFIX, as explained just below.
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001145
Bram Moolenaar8dff8182006-04-06 20:18:50 +00001146
Bram Moolenaarb4b43bb2014-09-19 16:04:11 +02001147IGNOREEXTRA *spell-IGNOREEXTRA*
1148
1149Normally Vim gives an error for an extra field that does not start with '#'.
1150This avoids errors going unnoticed. However, some files created for Myspell
1151or Hunspell may contain many entries with an extra field. Use the IGNOREEXTRA
1152flag to avoid lots of errors.
1153
1154
Bram Moolenaar8dff8182006-04-06 20:18:50 +00001155CIRCUMFIX *spell-CIRCUMFIX*
1156
1157The CIRCUMFIX flag means a prefix and suffix must be added at the same time.
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +02001158If a prefix has the CIRCUMFIX flag then only suffixes with the CIRCUMFIX flag
Bram Moolenaar8dff8182006-04-06 20:18:50 +00001159can be added, and the other way around.
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +02001160An alternative is to only specify the suffix, and give that suffix two flags:
1161the required prefix and the NEEDAFFIX flag. |spell-NEEDAFFIX|
Bram Moolenaar8dff8182006-04-06 20:18:50 +00001162
1163
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001164PFXPOSTPONE *spell-PFXPOSTPONE*
Bram Moolenaar8dff8182006-04-06 20:18:50 +00001165
Bram Moolenaare13305e2005-06-19 22:54:15 +00001166When an affix file has very many prefixes that apply to many words it's not
1167possible to build the whole word list in memory. This applies to Hebrew (a
1168list with all words is over a Gbyte). In that case applying prefixes must be
1169postponed. This makes spell checking slower. It is indicated by this keyword
1170in the .aff file:
1171
1172 PFXPOSTPONE ~
1173
Bram Moolenaar8dff8182006-04-06 20:18:50 +00001174Only prefixes without a chop string and without flags can be postponed.
1175Prefixes with a chop string or with flags will still be included in the word
1176list. An exception if the chop string is one character and equal to the last
1177character of the added string, but in lower case. Thus when the chop string
1178is used to allow the following word to start with an upper case letter.
Bram Moolenaare13305e2005-06-19 22:54:15 +00001179
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001180
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00001181WORDS WITH A SLASH *spell-SLASH*
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001182
1183The slash is used in the .dic file to separate the basic word from the affix
Bram Moolenaar33aec762006-01-22 23:30:12 +00001184letters and other flags. Unfortunately, this means you cannot use a slash in
Bram Moolenaar9ba7e172013-07-17 22:37:26 +02001185a word. Thus "TCP/IP" is not a word but "TCP" with the flags "IP". To include
Bram Moolenaar33aec762006-01-22 23:30:12 +00001186a slash in the word put a backslash before it: "TCP\/IP". In the rare case
1187you want to use a backslash inside a word you need to use two backslashes.
1188Any other use of the backslash is reserved for future expansion.
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001189
1190
Bram Moolenaar1cbe5f72005-12-29 22:51:09 +00001191KEEP-CASE WORDS *spell-KEEPCASE*
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001192
Bram Moolenaar1cbe5f72005-12-29 22:51:09 +00001193In the affix file a KEEPCASE line can be used to define the affix name used
1194for keep-case words. Example:
Bram Moolenaar45eeb132005-06-06 21:59:07 +00001195
Bram Moolenaar1cbe5f72005-12-29 22:51:09 +00001196 KEEPCASE = ~
Bram Moolenaar45eeb132005-06-06 21:59:07 +00001197
Bram Moolenaar4770d092006-01-12 23:22:24 +00001198This flag is not supported by Myspell. It has the meaning that case matters.
1199This can be used if the word does not have the first letter in upper case at
1200the start of a sentence. Example:
1201
1202 word list matches does not match ~
1203 's morgens/= 's morgens 'S morgens 's Morgens 'S MORGENS
1204 's Morgens 's Morgens 'S MORGENS 'S morgens 's morgens
1205
1206The flag can also be used to avoid that the word matches when it is in all
1207upper-case letters.
Bram Moolenaar45eeb132005-06-06 21:59:07 +00001208
Bram Moolenaare13305e2005-06-19 22:54:15 +00001209
Bram Moolenaar1cbe5f72005-12-29 22:51:09 +00001210RARE WORDS *spell-RARE*
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001211
Bram Moolenaar1cbe5f72005-12-29 22:51:09 +00001212In the affix file a RARE line can be used to define the affix name used for
Bram Moolenaar45eeb132005-06-06 21:59:07 +00001213rare words. Example:
1214
Bram Moolenaar1cbe5f72005-12-29 22:51:09 +00001215 RARE ? ~
Bram Moolenaar45eeb132005-06-06 21:59:07 +00001216
1217Rare words are highlighted differently from bad words. This is to be used for
1218words that are correct for the language, but are hardly ever used and could be
Bram Moolenaar30abd282005-06-22 22:35:10 +00001219a typing mistake anyway. When the same word is found as good it won't be
1220highlighted as rare.
1221
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001222This flag can also be used on an affix, so that a basic word is not rare but
1223the basic word plus affix is rare |spell-affix-flags|. However, if the word
1224also appears as a good word in another way (e.g., in another region) it won't
1225be marked as rare.
1226
Bram Moolenaar30abd282005-06-22 22:35:10 +00001227
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00001228BAD WORDS *spell-BAD*
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001229
Bram Moolenaar30abd282005-06-22 22:35:10 +00001230In the affix file a BAD line can be used to define the affix name used for
1231bad words. Example:
1232
1233 BAD ! ~
1234
1235This can be used to exclude words that would otherwise be good. For example
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00001236"the the" in the .dic file:
1237
1238 the the/! ~
1239
1240Once a word has been marked as bad it won't be undone by encountering the same
1241word as good.
Bram Moolenaar45eeb132005-06-06 21:59:07 +00001242
Bram Moolenaar4770d092006-01-12 23:22:24 +00001243The flag also applies to the word with affixes, thus this can be used to mark
1244a whole bunch of related words as bad.
1245
Bram Moolenaar9f94b052008-11-30 20:12:46 +00001246 *spell-FORBIDDENWORD*
1247FORBIDDENWORD can be used just like BAD. For compatibility with Hunspell.
1248
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00001249 *spell-NEEDAFFIX*
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001250The NEEDAFFIX flag is used to require that a word is used with an affix. The
Bram Moolenaar4770d092006-01-12 23:22:24 +00001251word itself is not a good word (unless there is an empty affix). Example:
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001252
1253 NEEDAFFIX + ~
1254
Bram Moolenaar45eeb132005-06-06 21:59:07 +00001255
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00001256COMPOUND WORDS *spell-compound*
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001257
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001258A compound word is a longer word made by concatenating words that appear in
1259the .dic file. To specify which words may be concatenated a character is
1260used. This character is put in the list of affixes after the word. We will
1261call this character a flag here. Obviously these flags must be different from
1262any affix IDs used.
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001263
1264 *spell-COMPOUNDFLAG*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001265The Myspell compatible method uses one flag, specified with COMPOUNDFLAG. All
1266words with this flag combine in any order. This means there is no control
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001267over which word comes first. Example:
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001268 COMPOUNDFLAG c ~
1269
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001270 *spell-COMPOUNDRULE*
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001271A more advanced method to specify how compound words can be formed uses
1272multiple items with multiple flags. This is not compatible with Myspell 3.0.
1273Let's start with an example:
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001274 COMPOUNDRULE c+ ~
1275 COMPOUNDRULE se ~
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001276
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001277The first line defines that words with the "c" flag can be concatenated in any
1278order. The second line defines compound words that are made of one word with
1279the "s" flag and one word with the "e" flag. With this dictionary:
1280 bork/c ~
1281 onion/s ~
1282 soup/e ~
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001283
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001284You can make these words:
1285 bork
1286 borkbork
1287 borkborkbork
1288 (etc.)
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001289 onion
1290 soup
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001291 onionsoup
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001292
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001293The COMPOUNDRULE item may appear multiple times. The argument is made out of
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001294one or more groups, where each group can be:
1295 one flag e.g., c
1296 alternate flags inside [] e.g., [abc]
1297Optionally this may be followed by:
1298 * the group appears zero or more times, e.g., sm*e
1299 + the group appears one or more times, e.g., c+
Bram Moolenaar251e1912011-06-19 05:09:16 +02001300 ? the group appears zero times or once, e.g., x?
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001301
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001302This is similar to the regexp pattern syntax (but not the same!). A few
1303examples with the sequence of word flags they require:
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001304 COMPOUNDRULE x+ x xx xxx etc.
1305 COMPOUNDRULE yz yz
1306 COMPOUNDRULE x+z xz xxz xxxz etc.
1307 COMPOUNDRULE yx+ yx yxx yxxx etc.
Bram Moolenaar251e1912011-06-19 05:09:16 +02001308 COMPOUNDRULE xy?z xz xyz
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001309
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001310 COMPOUNDRULE [abc]z az bz cz
1311 COMPOUNDRULE [abc]+z az aaz abaz bz baz bcbz cz caz cbaz etc.
1312 COMPOUNDRULE a[xyz]+ ax axx axyz ay ayx ayzz az azy azxy etc.
1313 COMPOUNDRULE sm*e se sme smme smmme etc.
1314 COMPOUNDRULE s[xyz]*e se sxe sxye sxyxe sye syze sze szye szyxe etc.
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001315
Bram Moolenaara6c840d2005-08-22 22:59:46 +00001316A specific example: Allow a compound to be made of two words and a dash:
1317 In the .aff file:
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001318 COMPOUNDRULE sde ~
Bram Moolenaara6c840d2005-08-22 22:59:46 +00001319 NEEDAFFIX x ~
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001320 COMPOUNDWORDMAX 3 ~
Bram Moolenaara6c840d2005-08-22 22:59:46 +00001321 COMPOUNDMIN 1 ~
1322 In the .dic file:
1323 start/s ~
1324 end/e ~
1325 -/xd ~
1326
1327This allows for the word "start-end", but not "startend".
1328
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001329An additional implied rule is that, without further flags, a word with a
1330prefix cannot be compounded after another word, and a word with a suffix
1331cannot be compounded with a following word. Thus the affix cannot appear
1332on the inside of a compound word. This can be changed with the
1333|spell-COMPOUNDPERMITFLAG|.
1334
Bram Moolenaar4770d092006-01-12 23:22:24 +00001335 *spell-NEEDCOMPOUND*
1336The NEEDCOMPOUND flag is used to require that a word is used as part of a
1337compound word. The word itself is not a good word. Example:
1338
1339 NEEDCOMPOUND & ~
1340
Bram Moolenaar9f94b052008-11-30 20:12:46 +00001341 *spell-ONLYINCOMPOUND*
1342The ONLYINCOMPOUND does exactly the same as NEEDCOMPOUND. Supported for
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001343compatibility with Hunspell.
Bram Moolenaar9f94b052008-11-30 20:12:46 +00001344
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001345 *spell-COMPOUNDMIN*
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001346The minimal character length of a word used for compounding is specified with
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001347COMPOUNDMIN. Example:
1348 COMPOUNDMIN 5 ~
1349
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00001350When omitted there is no minimal length. Obviously you could just leave out
1351the compound flag from short words instead, this feature is present for
1352compatibility with Myspell.
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001353
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001354 *spell-COMPOUNDWORDMAX*
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001355The maximum number of words that can be concatenated into a compound word is
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001356specified with COMPOUNDWORDMAX. Example:
1357 COMPOUNDWORDMAX 3 ~
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001358
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001359When omitted there is no maximum. It applies to all compound words.
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001360
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001361To set a limit for words with specific flags make sure the items in
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001362COMPOUNDRULE where they appear don't allow too many words.
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001363
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001364 *spell-COMPOUNDSYLMAX*
1365The maximum number of syllables that a compound word may contain is specified
1366with COMPOUNDSYLMAX. Example:
1367 COMPOUNDSYLMAX 6 ~
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001368
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001369This has no effect if there is no SYLLABLE item. Without COMPOUNDSYLMAX there
1370is no limit on the number of syllables.
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001371
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001372If both COMPOUNDWORDMAX and COMPOUNDSYLMAX are defined, a compound word is
Bram Moolenaara6c840d2005-08-22 22:59:46 +00001373accepted if it fits one of the criteria, thus is either made from up to
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001374COMPOUNDWORDMAX words or contains up to COMPOUNDSYLMAX syllables.
Bram Moolenaara6c840d2005-08-22 22:59:46 +00001375
Bram Moolenaar4770d092006-01-12 23:22:24 +00001376 *spell-COMPOUNDFORBIDFLAG*
1377The COMPOUNDFORBIDFLAG specifies a flag that can be used on an affix. It
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001378means that the word plus affix cannot be used in a compound word. Example:
1379 affix file:
1380 COMPOUNDFLAG c ~
1381 COMPOUNDFORBIDFLAG x ~
1382 SFX a Y 2 ~
1383 SFX a 0 s . ~
1384 SFX a 0 ize/x . ~
1385 dictionary:
1386 word/c ~
1387 util/ac ~
1388
1389This allows for "wordutil" and "wordutils" but not "wordutilize".
Bram Moolenaar18144c82006-04-12 21:52:12 +00001390Note: this doesn't work for postponed prefixes yet.
Bram Moolenaar4770d092006-01-12 23:22:24 +00001391
1392 *spell-COMPOUNDPERMITFLAG*
1393The COMPOUNDPERMITFLAG specifies a flag that can be used on an affix. It
1394means that the word plus affix can also be used in a compound word in a way
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001395where the affix ends up halfway the word. Without this flag that is not
1396allowed.
Bram Moolenaar18144c82006-04-12 21:52:12 +00001397Note: this doesn't work for postponed prefixes yet.
Bram Moolenaar4770d092006-01-12 23:22:24 +00001398
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001399 *spell-COMPOUNDROOT*
1400The COMPOUNDROOT flag is used for words in the dictionary that are already a
1401compound. This means it counts for two words when checking the compounding
1402rules. Can also be used for an affix to count the affix as a compounding
1403word.
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001404
Bram Moolenaar9f94b052008-11-30 20:12:46 +00001405 *spell-CHECKCOMPOUNDPATTERN*
1406CHECKCOMPOUNDPATTERN is used to define patterns that, when matching at the
1407position where two words are compounded together forbids the compound.
1408For example:
1409 CHECKCOMPOUNDPATTERN o e ~
1410
1411This forbids compounding if the first word ends in "o" and the second word
1412starts with "e".
1413
1414The arguments must be plain text, no patterns are actually supported, despite
1415the item name. Case is always ignored.
1416
1417The Hunspell feature to use three arguments and flags is not supported.
1418
Bram Moolenaar7b877b32016-01-09 13:51:34 +01001419 *spell-NOCOMPOUNDSUGS*
1420This item indicates that using compounding to make suggestions is not a good
1421idea. Use this when compounding is used with very short or one-character
1422words. E.g. to make numbers out of digits. Without this flag creating
1423suggestions would spend most time trying all kind of weird compound words.
1424
1425 NOCOMPOUNDSUGS ~
1426
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001427 *spell-SYLLABLE*
1428The SYLLABLE item defines characters or character sequences that are used to
1429count the number of syllables in a word. Example:
Bram Moolenaarab943432018-03-29 18:27:07 +02001430 SYLLABLE aáeéiíoóöõuúüûy/aa/au/ea/ee/ei/ie/oa/oe/oo/ou/uu/ui ~
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001431
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001432Before the first slash is the set of characters that are counted for one
1433syllable, also when repeated and mixed, until the next character that is not
1434in this set. After the slash come sequences of characters that are counted
1435for one syllable. These are preferred over using characters from the set.
1436With the example "ideeen" has three syllables, counted by "i", "ee" and "e".
1437
1438Only case-folded letters need to be included.
1439
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00001440Another way to restrict compounding was mentioned above: Adding the
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001441|spell-COMPOUNDFORBIDFLAG| flag to an affix causes all words that are made
Bram Moolenaar9ba7e172013-07-17 22:37:26 +02001442with that affix to not be used for compounding.
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001443
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00001444
1445UNLIMITED COMPOUNDING *spell-NOBREAK*
1446
1447For some languages, such as Thai, there is no space in between words. This
1448looks like all words are compounded. To specify this use the NOBREAK item in
1449the affix file, without arguments:
1450 NOBREAK ~
1451
1452Vim will try to figure out where one word ends and a next starts. When there
1453are spelling mistakes this may not be quite right.
1454
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001455
Bram Moolenaar4770d092006-01-12 23:22:24 +00001456 *spell-COMMON*
1457Common words can be specified with the COMMON item. This will give better
1458suggestions when editing a short file. Example:
1459
Bram Moolenaar3d1cde82020-08-15 18:55:18 +02001460 COMMON the of to and a in is it you that he she was for on are ~
Bram Moolenaar4770d092006-01-12 23:22:24 +00001461
1462The words must be separated by white space, up to 25 per line.
1463When multiple regions are specified in a ":mkspell" command the common words
1464for all regions are combined and used for all regions.
1465
1466 *spell-NOSPLITSUGS*
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00001467This item indicates that splitting a word to make suggestions is not a good
1468idea. Split-word suggestions will appear only when there are few similar
1469words.
Bram Moolenaar4770d092006-01-12 23:22:24 +00001470
1471 NOSPLITSUGS ~
1472
1473 *spell-NOSUGGEST*
1474The flag specified with NOSUGGEST can be used for words that will not be
1475suggested. Can be used for obscene words.
1476
1477 NOSUGGEST % ~
1478
Bram Moolenaar4770d092006-01-12 23:22:24 +00001479
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00001480REPLACEMENTS *spell-REP*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001481
1482In the affix file REP items can be used to define common mistakes. This is
1483used to make spelling suggestions. The items define the "from" text and the
1484"to" replacement. Example:
1485
1486 REP 4 ~
1487 REP f ph ~
1488 REP ph f ~
1489 REP k ch ~
1490 REP ch k ~
1491
Bram Moolenaar6e7c7f32005-08-24 22:16:11 +00001492The first line specifies the number of REP lines following. Vim ignores the
Bram Moolenaar4770d092006-01-12 23:22:24 +00001493number, but it must be there (for compatibility with Myspell).
Bram Moolenaar6e7c7f32005-08-24 22:16:11 +00001494
Bram Moolenaard042c562005-06-30 22:04:15 +00001495Don't include simple one-character replacements or swaps. Vim will try these
1496anyway. You can include whole words if you want to, but you might want to use
1497the "file:" item in 'spellsuggest' instead.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001498
Bram Moolenaar1e015462005-09-25 22:16:38 +00001499You can include a space by using an underscore:
1500
1501 REP the_the the ~
1502
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001503
Bram Moolenaara40ceaf2006-01-13 22:35:40 +00001504SIMILAR CHARACTERS *spell-MAP* *E783*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001505
Bram Moolenaard042c562005-06-30 22:04:15 +00001506In the affix file MAP items can be used to define letters that are very much
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001507alike. This is mostly used for a letter with different accents. This is used
1508to prefer suggestions with these letters substituted. Example:
1509
1510 MAP 2 ~
Bram Moolenaarab943432018-03-29 18:27:07 +02001511 MAP eéëêè ~
1512 MAP uüùúû ~
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001513
Bram Moolenaar6e7c7f32005-08-24 22:16:11 +00001514The first line specifies the number of MAP lines following. Vim ignores the
1515number, but the line must be there.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001516
Bram Moolenaard042c562005-06-30 22:04:15 +00001517Each letter must appear in only one of the MAP items. It's a bit more
1518efficient if the first letter is ASCII or at least one without accents.
Bram Moolenaare7566042005-06-17 22:00:15 +00001519
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001520
Bram Moolenaar4770d092006-01-12 23:22:24 +00001521.SUG FILE *spell-NOSUGFILE*
1522
1523When soundfolding is specified in the affix file then ":mkspell" will normally
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001524produce a .sug file next to the .spl file. This file is used to find
1525suggestions by their sound-a-like form quickly. At the cost of a lot of
1526memory (the amount depends on the number of words, |:mkspell| will display an
1527estimate when it's done).
Bram Moolenaar4770d092006-01-12 23:22:24 +00001528
1529To avoid producing a .sug file use this item in the affix file:
1530
1531 NOSUGFILE ~
1532
Bram Moolenaard12f5c12006-01-25 22:10:52 +00001533Users can simply omit the .sug file if they don't want to use it.
1534
Bram Moolenaar4770d092006-01-12 23:22:24 +00001535
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00001536SOUND-A-LIKE *spell-SAL*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001537
1538In the affix file SAL items can be used to define the sounds-a-like mechanism
1539to be used. The main items define the "from" text and the "to" replacement.
Bram Moolenaard042c562005-06-30 22:04:15 +00001540Simplistic example:
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001541
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001542 SAL CIA X ~
1543 SAL CH X ~
1544 SAL C K ~
1545 SAL K K ~
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001546
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00001547There are a few rules and this can become quite complicated. An explanation
Bram Moolenaard042c562005-06-30 22:04:15 +00001548how it works can be found in the Aspell manual:
Bram Moolenaar42eeac32005-06-29 22:40:58 +00001549http://aspell.net/man-html/Phonetic-Code.html.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001550
1551There are a few special items:
1552
1553 SAL followup true ~
1554 SAL collapse_result true ~
1555 SAL remove_accents true ~
1556
1557"1" has the same meaning as "true". Any other value means "false".
1558
Bram Moolenaar42eeac32005-06-29 22:40:58 +00001559
Bram Moolenaar6f16eb82005-08-23 21:02:42 +00001560SIMPLE SOUNDFOLDING *spell-SOFOFROM* *spell-SOFOTO*
Bram Moolenaar42eeac32005-06-29 22:40:58 +00001561
1562The SAL mechanism is complex and slow. A simpler mechanism is mapping all
1563characters to another character, mapping similar sounding characters to the
1564same character. At the same time this does case folding. You can not have
Bram Moolenaard042c562005-06-30 22:04:15 +00001565both SAL items and simple soundfolding.
Bram Moolenaar42eeac32005-06-29 22:40:58 +00001566
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00001567There are two items required: one to specify the characters that are mapped
Bram Moolenaar42eeac32005-06-29 22:40:58 +00001568and one that specifies the characters they are mapped to. They must have
1569exactly the same number of characters. Example:
1570
1571 SOFOFROM abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ ~
1572 SOFOTO ebctefghejklnnepkrstevvkesebctefghejklnnepkrstevvkes ~
1573
1574In the example all vowels are mapped to the same character 'e'. Another
Bram Moolenaard042c562005-06-30 22:04:15 +00001575method would be to leave out all vowels. Some characters that sound nearly
1576the same and are often mixed up, such as 'm' and 'n', are mapped to the same
1577character. Don't do this too much, all words will start looking alike.
Bram Moolenaar42eeac32005-06-29 22:40:58 +00001578
1579Characters that do not appear in SOFOFROM will be left out, except that all
1580white space is replaced by one space. Sequences of the same character in
1581SOFOFROM are replaced by one.
1582
1583You can use the |soundfold()| function to try out the results. Or set the
Bram Moolenaarcc016f52005-12-10 20:23:46 +00001584'verbose' option to see the score in the output of the |z=| command.
Bram Moolenaar42eeac32005-06-29 22:40:58 +00001585
1586
Bram Moolenaar4770d092006-01-12 23:22:24 +00001587UNSUPPORTED ITEMS *spell-affix-not-supported*
1588
1589These items appear in the affix file of other spell checkers. In Vim they are
1590ignored, not supported or defined in another way.
1591
1592ACCENT (Hunspell) *spell-ACCENT*
1593 Use MAP instead. |spell-MAP|
1594
Bram Moolenaar9f94b052008-11-30 20:12:46 +00001595BREAK (Hunspell) *spell-BREAK*
1596 Define break points. Unclear how it works exactly.
1597 Not supported.
1598
Bram Moolenaar4770d092006-01-12 23:22:24 +00001599CHECKCOMPOUNDCASE (Hunspell) *spell-CHECKCOMPOUNDCASE*
1600 Disallow uppercase letters at compound word boundaries.
1601 Not supported.
1602
1603CHECKCOMPOUNDDUP (Hunspell) *spell-CHECKCOMPOUNDDUP*
1604 Disallow using the same word twice in a compound. Not
1605 supported.
1606
1607CHECKCOMPOUNDREP (Hunspell) *spell-CHECKCOMPOUNDREP*
1608 Something about using REP items and compound words. Not
1609 supported.
1610
1611CHECKCOMPOUNDTRIPLE (Hunspell) *spell-CHECKCOMPOUNDTRIPLE*
1612 Forbid three identical characters when compounding. Not
1613 supported.
1614
Bram Moolenaar9712ff12022-09-18 13:04:22 +01001615CHECKSHARPS (Hunspell) *spell-CHECKSHARPS*
Bram Moolenaar2a953fc2019-01-26 17:41:47 +01001616 SS letter pair in uppercased (German) words may be upper case
1617 sharp s (ß). Not supported.
1618
Bram Moolenaar4770d092006-01-12 23:22:24 +00001619COMPLEXPREFIXES (Hunspell) *spell-COMPLEXPREFIXES*
1620 Enables using two prefixes. Not supported.
1621
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001622COMPOUND (Hunspell) *spell-COMPOUND*
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00001623 This is one line with the count of COMPOUND items, followed by
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001624 that many COMPOUND lines with a pattern.
1625 Remove the first line with the count and rename the other
1626 items to COMPOUNDRULE |spell-COMPOUNDRULE|
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001627
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001628COMPOUNDFIRST (Hunspell) *spell-COMPOUNDFIRST*
1629 Use COMPOUNDRULE instead. |spell-COMPOUNDRULE|
1630
Bram Moolenaar4770d092006-01-12 23:22:24 +00001631COMPOUNDBEGIN (Hunspell) *spell-COMPOUNDBEGIN*
Bram Moolenaar2a953fc2019-01-26 17:41:47 +01001632 Words signed with COMPOUNDBEGIN may be first elements in
1633 compound words.
1634 Use COMPOUNDRULE instead. |spell-COMPOUNDRULE|
1635
1636COMPOUNDLAST (Hunspell) *spell-COMPOUNDLAST*
1637 Words signed with COMPOUNDLAST may be last elements in
1638 compound words.
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001639 Use COMPOUNDRULE instead. |spell-COMPOUNDRULE|
Bram Moolenaar4770d092006-01-12 23:22:24 +00001640
1641COMPOUNDEND (Hunspell) *spell-COMPOUNDEND*
Bram Moolenaar2a953fc2019-01-26 17:41:47 +01001642 Probably the same as COMPOUNDLAST
Bram Moolenaar4770d092006-01-12 23:22:24 +00001643
1644COMPOUNDMIDDLE (Hunspell) *spell-COMPOUNDMIDDLE*
Bram Moolenaar2a953fc2019-01-26 17:41:47 +01001645 Words signed with COMPOUNDMIDDLE may be middle elements in
1646 compound words.
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001647 Use COMPOUNDRULE instead. |spell-COMPOUNDRULE|
Bram Moolenaar4770d092006-01-12 23:22:24 +00001648
Bram Moolenaar9f94b052008-11-30 20:12:46 +00001649COMPOUNDRULES (Hunspell) *spell-COMPOUNDRULES*
1650 Number of COMPOUNDRULE lines following. Ignored, but the
1651 argument must be a number.
1652
Bram Moolenaar4770d092006-01-12 23:22:24 +00001653COMPOUNDSYLLABLE (Hunspell) *spell-COMPOUNDSYLLABLE*
1654 Use SYLLABLE and COMPOUNDSYLMAX instead. |spell-SYLLABLE|
1655 |spell-COMPOUNDSYLMAX|
1656
Bram Moolenaar9f94b052008-11-30 20:12:46 +00001657KEY (Hunspell) *spell-KEY*
1658 Define characters that are close together on the keyboard.
1659 Used to give better suggestions. Not supported.
Bram Moolenaar6aa8cea2017-06-05 14:44:35 +02001660
Bram Moolenaar4770d092006-01-12 23:22:24 +00001661LANG (Hunspell) *spell-LANG*
1662 This specifies language-specific behavior. This actually
1663 moves part of the language knowledge into the program,
1664 therefore Vim does not support it. Each language property
1665 must be specified separately.
1666
1667LEMMA_PRESENT (Hunspell) *spell-LEMMA_PRESENT*
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001668 Only needed for morphological analysis.
Bram Moolenaar4770d092006-01-12 23:22:24 +00001669
1670MAXNGRAMSUGS (Hunspell) *spell-MAXNGRAMSUGS*
Bram Moolenaar9f94b052008-11-30 20:12:46 +00001671 Set number of n-gram suggestions. Not supported.
Bram Moolenaar4770d092006-01-12 23:22:24 +00001672
1673PSEUDOROOT (Hunspell) *spell-PSEUDOROOT*
1674 Use NEEDAFFIX instead. |spell-NEEDAFFIX|
1675
1676SUGSWITHDOTS (Hunspell) *spell-SUGSWITHDOTS*
1677 Adds dots to suggestions. Vim doesn't need this.
1678
1679SYLLABLENUM (Hunspell) *spell-SYLLABLENUM*
1680 Not supported.
1681
1682TRY (Myspell, Hunspell, others) *spell-TRY*
1683 Vim does not use the TRY item, it is ignored. For making
Bram Moolenaara94bc432006-03-10 21:42:59 +00001684 suggestions the actual characters in the words are used, that
1685 is much more efficient.
Bram Moolenaar4770d092006-01-12 23:22:24 +00001686
Bram Moolenaar4770d092006-01-12 23:22:24 +00001687WORDCHARS (Hunspell) *spell-WORDCHARS*
1688 Used to recognize words. Vim doesn't need it, because there
1689 is no need to separate words before checking them (using a
1690 trie instead of a hashtable).
1691
Bram Moolenaar91f84f62018-07-29 15:07:52 +02001692 vim:tw=78:sw=4:ts=8:noet:ft=help:norl: