comparison runtime/doc/pattern.txt @ 33434:484543479bd7

runtime(doc): fix typos. Commit: https://github.com/vim/vim/commit/ba77bbb5c775663a8b55871f753d7b1b570bb9ba Author: h_east <h.east.727@gmail.com> Date: Tue Oct 3 04:47:13 2023 +0900 runtime(doc): fix typos. * Fix typo in document (Related: https://github.com/vim/vim/issues/12516) * Fix E1363 duplication * Fix one more typo. Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Mon, 02 Oct 2023 22:00:05 +0200
parents a9b5ffbc0428
children 9f55ea4702b1
comparison
equal deleted inserted replaced
33433:c66a146cfebc 33434:484543479bd7
1078 1078
1079 ~ matches the last given substitute string */~* */\~* 1079 ~ matches the last given substitute string */~* */\~*
1080 1080
1081 \(\) A pattern enclosed by escaped parentheses. */\(* */\(\)* */\)* 1081 \(\) A pattern enclosed by escaped parentheses. */\(* */\(\)* */\)*
1082 E.g., "\(^a\)" matches 'a' at the start of a line. 1082 E.g., "\(^a\)" matches 'a' at the start of a line.
1083 There can only be ten of these. You can use "\%(" to add more, but 1083 There can only be nine of these. You can use "\%(" to add more, but
1084 not counting it as a sub-expression. 1084 not counting it as a sub-expression.
1085 *E51* *E54* *E55* *E872* *E873* 1085 *E51* *E54* *E55* *E872* *E873*
1086 1086
1087 \1 Matches the same string that was matched by */\1* *E65* 1087 \1 Matches the same string that was matched by */\1* *E65*
1088 the first sub-expression in \( and \). 1088 the first sub-expression in \( and \).