comparison runtime/doc/pattern.txt @ 15932:c3c1abe7aff2

Update runtime files commit https://github.com/vim/vim/commit/f6b401090e816b4216f783a9b85d21d9ad134ff8 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Feb 22 15:24:03 2019 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Fri, 22 Feb 2019 15:30:07 +0100
parents 314694a2e74a
children 5e25171e0e75
comparison
equal deleted inserted replaced
15931:4ea49caf396d 15932:c3c1abe7aff2
1 *pattern.txt* For Vim version 8.1. Last change: 2018 Dec 26 1 *pattern.txt* For Vim version 8.1. Last change: 2019 Feb 21
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1209 Numbers below 040 must be followed by a non-octal digit or a non-digit. 1209 Numbers below 040 must be followed by a non-octal digit or a non-digit.
1210 \%x2a Matches the character specified with up to two hexadecimal characters. 1210 \%x2a Matches the character specified with up to two hexadecimal characters.
1211 \%u20AC Matches the character specified with up to four hexadecimal 1211 \%u20AC Matches the character specified with up to four hexadecimal
1212 characters. 1212 characters.
1213 \%U1234abcd Matches the character specified with up to eight hexadecimal 1213 \%U1234abcd Matches the character specified with up to eight hexadecimal
1214 characters. 1214 characters, up to 0x7fffffff
1215 1215
1216 ============================================================================== 1216 ==============================================================================
1217 7. Ignoring case in a pattern */ignorecase* 1217 7. Ignoring case in a pattern */ignorecase*
1218 1218
1219 If the 'ignorecase' option is on, the case of normal letters is ignored. 1219 If the 'ignorecase' option is on, the case of normal letters is ignored.