comparison runtime/doc/pattern.txt @ 23573:e2e2cc5d0856

Update runtime files. Commit: https://github.com/vim/vim/commit/82be4849eed0b8fbee45bc8da99b685ec89af59a Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jan 11 19:40:15 2021 +0100 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Mon, 11 Jan 2021 19:45:05 +0100
parents 15fa3923cc49
children ef454a7f485d
comparison
equal deleted inserted replaced
23572:b35e568d74e6 23573:e2e2cc5d0856
1 *pattern.txt* For Vim version 8.2. Last change: 2020 Dec 25 1 *pattern.txt* For Vim version 8.2. Last change: 2021 Jan 08
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1177 \t <Tab> 1177 \t <Tab>
1178 \r <CR> (NOT end-of-line!) 1178 \r <CR> (NOT end-of-line!)
1179 \b <BS> 1179 \b <BS>
1180 \n line break, see above |/[\n]| 1180 \n line break, see above |/[\n]|
1181 \d123 decimal number of character 1181 \d123 decimal number of character
1182 \o40 octal number of character up to 0377 1182 \o40 octal number of character up to 0o377
1183 \x20 hexadecimal number of character up to 0xff 1183 \x20 hexadecimal number of character up to 0xff
1184 \u20AC hex. number of multibyte character up to 0xffff 1184 \u20AC hex. number of multibyte character up to 0xffff
1185 \U1234 hex. number of multibyte character up to 0xffffffff 1185 \U1234 hex. number of multibyte character up to 0xffffffff
1186 NOTE: The other backslash codes mentioned above do not work inside 1186 NOTE: The other backslash codes mentioned above do not work inside
1187 []! 1187 []!
1215 */\%d* */\%x* */\%o* */\%u* */\%U* *E678* 1215 */\%d* */\%x* */\%o* */\%u* */\%U* *E678*
1216 1216
1217 \%d123 Matches the character specified with a decimal number. Must be 1217 \%d123 Matches the character specified with a decimal number. Must be
1218 followed by a non-digit. 1218 followed by a non-digit.
1219 \%o40 Matches the character specified with an octal number up to 0377. 1219 \%o40 Matches the character specified with an octal number up to 0377.
1220 Numbers below 040 must be followed by a non-octal digit or a non-digit. 1220 Numbers below 0o40 must be followed by a non-octal digit or a
1221 non-digit.
1221 \%x2a Matches the character specified with up to two hexadecimal characters. 1222 \%x2a Matches the character specified with up to two hexadecimal characters.
1222 \%u20AC Matches the character specified with up to four hexadecimal 1223 \%u20AC Matches the character specified with up to four hexadecimal
1223 characters. 1224 characters.
1224 \%U1234abcd Matches the character specified with up to eight hexadecimal 1225 \%U1234abcd Matches the character specified with up to eight hexadecimal
1225 characters, up to 0x7fffffff 1226 characters, up to 0x7fffffff