comparison runtime/doc/pattern.txt @ 856:8cd729851562 v7.0g

updated for version 7.0g
author vimboss
date Sun, 30 Apr 2006 18:54:39 +0000
parents d10fbefd3bc1
children 4bac29d27e2f
comparison
equal deleted inserted replaced
855:d2a4f08396fe 856:8cd729851562
1 *pattern.txt* For Vim version 7.0f. Last change: 2006 Apr 29 1 *pattern.txt* For Vim version 7.0g. Last change: 2006 Apr 30
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1016 These items only work for 8-bit characters. 1016 These items only work for 8-bit characters.
1017 */[[=* *[==]* 1017 */[[=* *[==]*
1018 - An equivalence class. This means that characters are matched that 1018 - An equivalence class. This means that characters are matched that
1019 have almost the same meaning, e.g., when ignoring accents. The form 1019 have almost the same meaning, e.g., when ignoring accents. The form
1020 is: 1020 is:
1021 [=a=] 1021 [=a=]
1022 Currently this is only implemented for latin1. Also works for the 1022 Currently this is only implemented for latin1. Also works for the
1023 latin1 characters in utf-8 and latin9. 1023 latin1 characters in utf-8 and latin9.
1024 */[[.* *[..]* 1024 */[[.* *[..]*
1025 - A collation element. This currently simply accepts a single 1025 - A collation element. This currently simply accepts a single
1026 character in the form: 1026 character in the form:
1027 [.a.] 1027 [.a.]
1028 */\]* 1028 */\]*
1029 - To include a literal ']', '^', '-' or '\' in the collection, put a 1029 - To include a literal ']', '^', '-' or '\' in the collection, put a
1030 backslash before it: "[xyz\]]", "[\^xyz]", "[xy\-z]" and "[xyz\\]". 1030 backslash before it: "[xyz\]]", "[\^xyz]", "[xy\-z]" and "[xyz\\]".
1031 (Note: POSIX does not support the use of a backslash this way). For 1031 (Note: POSIX does not support the use of a backslash this way). For
1032 ']' you can also make it the first character (following a possible 1032 ']' you can also make it the first character (following a possible