comparison runtime/doc/spell.txt @ 2908:fd09a9c8468e

Updated runtime files.
author Bram Moolenaar <bram@vim.org>
date Sun, 19 Jun 2011 05:09:16 +0200
parents b6471224d2af
children 7a2ffd685c0e
comparison
equal deleted inserted replaced
2907:ea75da0af64d 2908:fd09a9c8468e
1 *spell.txt* For Vim version 7.3. Last change: 2011 Feb 01 1 *spell.txt* For Vim version 7.3. Last change: 2011 May 25
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1242 one flag e.g., c 1242 one flag e.g., c
1243 alternate flags inside [] e.g., [abc] 1243 alternate flags inside [] e.g., [abc]
1244 Optionally this may be followed by: 1244 Optionally this may be followed by:
1245 * the group appears zero or more times, e.g., sm*e 1245 * the group appears zero or more times, e.g., sm*e
1246 + the group appears one or more times, e.g., c+ 1246 + the group appears one or more times, e.g., c+
1247 ? the group appears zero times or once, e.g., x?
1247 1248
1248 This is similar to the regexp pattern syntax (but not the same!). A few 1249 This is similar to the regexp pattern syntax (but not the same!). A few
1249 examples with the sequence of word flags they require: 1250 examples with the sequence of word flags they require:
1250 COMPOUNDRULE x+ x xx xxx etc. 1251 COMPOUNDRULE x+ x xx xxx etc.
1251 COMPOUNDRULE yz yz 1252 COMPOUNDRULE yz yz
1252 COMPOUNDRULE x+z xz xxz xxxz etc. 1253 COMPOUNDRULE x+z xz xxz xxxz etc.
1253 COMPOUNDRULE yx+ yx yxx yxxx etc. 1254 COMPOUNDRULE yx+ yx yxx yxxx etc.
1255 COMPOUNDRULE xy?z xz xyz
1254 1256
1255 COMPOUNDRULE [abc]z az bz cz 1257 COMPOUNDRULE [abc]z az bz cz
1256 COMPOUNDRULE [abc]+z az aaz abaz bz baz bcbz cz caz cbaz etc. 1258 COMPOUNDRULE [abc]+z az aaz abaz bz baz bcbz cz caz cbaz etc.
1257 COMPOUNDRULE a[xyz]+ ax axx axyz ay ayx ayzz az azy azxy etc. 1259 COMPOUNDRULE a[xyz]+ ax axx axyz ay ayx ayzz az azy azxy etc.
1258 COMPOUNDRULE sm*e se sme smme smmme etc. 1260 COMPOUNDRULE sm*e se sme smme smmme etc.