Mercurial > vim
annotate runtime/doc/pattern.txt @ 31897:bb51f13a7bea
Added tag v9.0.1280 for changeset ecfabcaafc0b31db0ffed7f3704869adb9376a64
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 04 Feb 2023 17:00:05 +0100 |
parents | 1e91e26ceebf |
children | a9b5ffbc0428 |
rev | line source |
---|---|
30547 | 1 *pattern.txt* For Vim version 9.0. Last change: 2022 Sep 24 |
7 | 2 |
3 | |
4 VIM REFERENCE MANUAL by Bram Moolenaar | |
5 | |
6 | |
7 Patterns and search commands *pattern-searches* | |
8 | |
9 The very basics can be found in section |03.9| of the user manual. A few more | |
10 explanations are in chapter 27 |usr_27.txt|. | |
11 | |
12 1. Search commands |search-commands| | |
13 2. The definition of a pattern |search-pattern| | |
14 3. Magic |/magic| | |
15 4. Overview of pattern items |pattern-overview| | |
16 5. Multi items |pattern-multi-items| | |
17 6. Ordinary atoms |pattern-atoms| | |
18 7. Ignoring case in a pattern |/ignorecase| | |
714 | 19 8. Composing characters |patterns-composing| |
20 9. Compare with Perl patterns |perl-patterns| | |
21 10. Highlighting matches |match-highlight| | |
28010 | 22 11. Fuzzy matching |fuzzy-matching| |
7 | 23 |
24 ============================================================================== | |
3153 | 25 1. Search commands *search-commands* |
7 | 26 |
27 */* | |
28 /{pattern}[/]<CR> Search forward for the [count]'th occurrence of | |
29 {pattern} |exclusive|. | |
30 | |
31 /{pattern}/{offset}<CR> Search forward for the [count]'th occurrence of | |
32 {pattern} and go |{offset}| lines up or down. | |
33 |linewise|. | |
34 | |
35 */<CR>* | |
2033
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
36 /<CR> Search forward for the [count]'th occurrence of the |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
37 latest used pattern |last-pattern| with latest used |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
38 |{offset}|. |
7 | 39 |
2033
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
40 //{offset}<CR> Search forward for the [count]'th occurrence of the |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
41 latest used pattern |last-pattern| with new |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
42 |{offset}|. If {offset} is empty no offset is used. |
7 | 43 |
44 *?* | |
45 ?{pattern}[?]<CR> Search backward for the [count]'th previous | |
46 occurrence of {pattern} |exclusive|. | |
47 | |
48 ?{pattern}?{offset}<CR> Search backward for the [count]'th previous | |
49 occurrence of {pattern} and go |{offset}| lines up or | |
50 down |linewise|. | |
51 | |
52 *?<CR>* | |
2033
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
53 ?<CR> Search backward for the [count]'th occurrence of the |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
54 latest used pattern |last-pattern| with latest used |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
55 |{offset}|. |
7 | 56 |
2033
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
57 ??{offset}<CR> Search backward for the [count]'th occurrence of the |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
58 latest used pattern |last-pattern| with new |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
59 |{offset}|. If {offset} is empty no offset is used. |
7 | 60 |
61 *n* | |
62 n Repeat the latest "/" or "?" [count] times. | |
6647 | 63 If the cursor doesn't move the search is repeated with |
64 count + 1. | |
16808 | 65 |last-pattern| |
7 | 66 |
67 *N* | |
68 N Repeat the latest "/" or "?" [count] times in | |
16808 | 69 opposite direction. |last-pattern| |
7 | 70 |
71 *star* *E348* *E349* | |
72 * Search forward for the [count]'th occurrence of the | |
73 word nearest to the cursor. The word used for the | |
74 search is the first of: | |
75 1. the keyword under the cursor |'iskeyword'| | |
76 2. the first keyword after the cursor, in the | |
77 current line | |
78 3. the non-blank word under the cursor | |
79 4. the first non-blank word after the cursor, | |
80 in the current line | |
81 Only whole keywords are searched for, like with the | |
18831 | 82 command "/\<keyword\>". |exclusive| |
7 | 83 'ignorecase' is used, 'smartcase' is not. |
84 | |
85 *#* | |
86 # Same as "*", but search backward. The pound sign | |
87 (character 163) also works. If the "#" key works as | |
88 backspace, try using "stty erase <BS>" before starting | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
89 Vim (<BS> is CTRL-H or a real backspace). |
7 | 90 |
91 *gstar* | |
92 g* Like "*", but don't put "\<" and "\>" around the word. | |
93 This makes the search also find matches that are not a | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
94 whole word. |
7 | 95 |
96 *g#* | |
97 g# Like "#", but don't put "\<" and "\>" around the word. | |
98 This makes the search also find matches that are not a | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
99 whole word. |
7 | 100 |
101 *gd* | |
102 gd Goto local Declaration. When the cursor is on a local | |
103 variable, this command will jump to its declaration. | |
104 First Vim searches for the start of the current | |
105 function, just like "[[". If it is not found the | |
106 search stops in line 1. If it is found, Vim goes back | |
107 until a blank line is found. From this position Vim | |
108 searches for the keyword under the cursor, like with | |
109 "*", but lines that look like a comment are ignored | |
110 (see 'comments' option). | |
111 Note that this is not guaranteed to work, Vim does not | |
112 really check the syntax, it only searches for a match | |
113 with the keyword. If included files also need to be | |
114 searched use the commands listed in |include-search|. | |
115 After this command |n| searches forward for the next | |
116 match (not backward). | |
117 | |
118 *gD* | |
119 gD Goto global Declaration. When the cursor is on a | |
120 global variable that is defined in the file, this | |
121 command will jump to its declaration. This works just | |
122 like "gd", except that the search for the keyword | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
123 always starts in line 1. |
7 | 124 |
523 | 125 *1gd* |
126 1gd Like "gd", but ignore matches inside a {} block that | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
127 ends before the cursor position. |
523 | 128 |
129 *1gD* | |
130 1gD Like "gD", but ignore matches inside a {} block that | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
131 ends before the cursor position. |
523 | 132 |
7 | 133 *CTRL-C* |
134 CTRL-C Interrupt current (search) command. Use CTRL-Break on | |
18972 | 135 MS-Windows |dos-CTRL-Break|. |
7 | 136 In Normal mode, any pending command is aborted. |
30547 | 137 When Vim was started with output redirected and there |
138 are no changed buffers CTRL-C exits Vim. That is to | |
139 help users who use "vim file | grep word" and don't | |
140 know how to get out (blindly typing :qa<CR> would | |
141 work). | |
7 | 142 |
143 *:noh* *:nohlsearch* | |
144 :noh[lsearch] Stop the highlighting for the 'hlsearch' option. It | |
145 is automatically turned back on when using a search | |
146 command, or setting the 'hlsearch' option. | |
147 This command doesn't work in an autocommand, because | |
148 the highlighting state is saved and restored when | |
149 executing autocommands |autocmd-searchpat|. | |
1620 | 150 Same thing for when invoking a user function. |
7 | 151 |
152 While typing the search pattern the current match will be shown if the | |
153 'incsearch' option is on. Remember that you still have to finish the search | |
154 command with <CR> to actually position the cursor at the displayed match. Or | |
155 use <Esc> to abandon the search. | |
156 | |
157 All matches for the last used search pattern will be highlighted if you set | |
158 the 'hlsearch' option. This can be suspended with the |:nohlsearch| command. | |
159 | |
16533
5e25171e0e75
patch 8.1.1270: cannot see current match position
Bram Moolenaar <Bram@vim.org>
parents:
15932
diff
changeset
|
160 When 'shortmess' does not include the "S" flag, Vim will automatically show an |
5e25171e0e75
patch 8.1.1270: cannot see current match position
Bram Moolenaar <Bram@vim.org>
parents:
15932
diff
changeset
|
161 index, on which the cursor is. This can look like this: > |
5e25171e0e75
patch 8.1.1270: cannot see current match position
Bram Moolenaar <Bram@vim.org>
parents:
15932
diff
changeset
|
162 |
5e25171e0e75
patch 8.1.1270: cannot see current match position
Bram Moolenaar <Bram@vim.org>
parents:
15932
diff
changeset
|
163 [1/5] Cursor is on first of 5 matches. |
5e25171e0e75
patch 8.1.1270: cannot see current match position
Bram Moolenaar <Bram@vim.org>
parents:
15932
diff
changeset
|
164 [1/>99] Cursor is on first of more than 99 matches. |
5e25171e0e75
patch 8.1.1270: cannot see current match position
Bram Moolenaar <Bram@vim.org>
parents:
15932
diff
changeset
|
165 [>99/>99] Cursor is after 99 match of more than 99 matches. |
5e25171e0e75
patch 8.1.1270: cannot see current match position
Bram Moolenaar <Bram@vim.org>
parents:
15932
diff
changeset
|
166 [?/??] Unknown how many matches exists, generating the |
5e25171e0e75
patch 8.1.1270: cannot see current match position
Bram Moolenaar <Bram@vim.org>
parents:
15932
diff
changeset
|
167 statistics was aborted because of search timeout. |
5e25171e0e75
patch 8.1.1270: cannot see current match position
Bram Moolenaar <Bram@vim.org>
parents:
15932
diff
changeset
|
168 |
5e25171e0e75
patch 8.1.1270: cannot see current match position
Bram Moolenaar <Bram@vim.org>
parents:
15932
diff
changeset
|
169 Note: the count does not take offset into account. |
5e25171e0e75
patch 8.1.1270: cannot see current match position
Bram Moolenaar <Bram@vim.org>
parents:
15932
diff
changeset
|
170 |
3153 | 171 When no match is found you get the error: *E486* Pattern not found |
28010 | 172 Note that for the `:global` command, when used in legacy script, you get a |
173 normal message "Pattern not found", for Vi compatibility. | |
174 In |Vim9| script you get E486 for "pattern not found" or *E538* when the pattern | |
175 matches in every line with `:vglobal`. | |
176 For the |:s| command the "e" flag can be used to avoid the error message | |
177 |:s_flags|. | |
3153 | 178 |
7 | 179 *search-offset* *{offset}* |
180 These commands search for the specified pattern. With "/" and "?" an | |
181 additional offset may be given. There are two types of offsets: line offsets | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
182 and character offsets. |
7 | 183 |
184 The offset gives the cursor position relative to the found match: | |
185 [num] [num] lines downwards, in column 1 | |
186 +[num] [num] lines downwards, in column 1 | |
187 -[num] [num] lines upwards, in column 1 | |
188 e[+num] [num] characters to the right of the end of the match | |
189 e[-num] [num] characters to the left of the end of the match | |
190 s[+num] [num] characters to the right of the start of the match | |
191 s[-num] [num] characters to the left of the start of the match | |
192 b[+num] [num] identical to s[+num] above (mnemonic: begin) | |
193 b[-num] [num] identical to s[-num] above (mnemonic: begin) | |
667 | 194 ;{pattern} perform another search, see |//;| |
7 | 195 |
196 If a '-' or '+' is given but [num] is omitted, a count of one will be used. | |
197 When including an offset with 'e', the search becomes inclusive (the | |
198 character the cursor lands on is included in operations). | |
199 | |
200 Examples: | |
201 | |
202 pattern cursor position ~ | |
203 /test/+1 one line below "test", in column 1 | |
204 /test/e on the last t of "test" | |
205 /test/s+2 on the 's' of "test" | |
206 /test/b-3 three characters before "test" | |
207 | |
208 If one of these commands is used after an operator, the characters between | |
209 the cursor position before and after the search is affected. However, if a | |
210 line offset is given, the whole lines between the two cursor positions are | |
211 affected. | |
212 | |
213 An example of how to search for matches with a pattern and change the match | |
214 with another word: > | |
215 /foo<CR> find "foo" | |
5663
1dea14d4c738
Update runtime files. Add support for systemverilog.
Bram Moolenaar <bram@vim.org>
parents:
5487
diff
changeset
|
216 c//e<CR> change until end of match |
7 | 217 bar<Esc> type replacement |
218 //<CR> go to start of next match | |
5663
1dea14d4c738
Update runtime files. Add support for systemverilog.
Bram Moolenaar <bram@vim.org>
parents:
5487
diff
changeset
|
219 c//e<CR> change until end of match |
7 | 220 beep<Esc> type another replacement |
221 etc. | |
222 < | |
223 *//;* *E386* | |
224 A very special offset is ';' followed by another search command. For example: > | |
225 | |
226 /test 1/;/test | |
227 /test.*/+1;?ing? | |
228 | |
229 The first one first finds the next occurrence of "test 1", and then the first | |
230 occurrence of "test" after that. | |
231 | |
232 This is like executing two search commands after each other, except that: | |
233 - It can be used as a single motion command after an operator. | |
234 - The direction for a following "n" or "N" command comes from the first | |
235 search command. | |
236 - When an error occurs the cursor is not moved at all. | |
237 | |
238 *last-pattern* | |
239 The last used pattern and offset are remembered. They can be used to repeat | |
240 the search, possibly in another direction or with another count. Note that | |
24024 | 241 two patterns are remembered: One for "normal" search commands and one for the |
7 | 242 substitute command ":s". Each time an empty pattern is given, the previously |
2725 | 243 used pattern is used. However, if there is no previous search command, a |
244 previous substitute pattern is used, if possible. | |
7 | 245 |
246 The 'magic' option sticks with the last used pattern. If you change 'magic', | |
247 this will not change how the last used pattern will be interpreted. | |
248 The 'ignorecase' option does not do this. When 'ignorecase' is changed, it | |
249 will result in the pattern to match other text. | |
250 | |
251 All matches for the last used search pattern will be highlighted if you set | |
252 the 'hlsearch' option. | |
253 | |
254 To clear the last used search pattern: > | |
255 :let @/ = "" | |
256 This will not set the pattern to an empty string, because that would match | |
257 everywhere. The pattern is really cleared, like when starting Vim. | |
258 | |
133 | 259 The search usually skips matches that don't move the cursor. Whether the next |
7 | 260 match is found at the next character or after the skipped match depends on the |
261 'c' flag in 'cpoptions'. See |cpo-c|. | |
262 with 'c' flag: "/..." advances 1 to 3 characters | |
263 without 'c' flag: "/..." advances 1 character | |
264 The unpredictability with the 'c' flag is caused by starting the search in the | |
265 first column, skipping matches until one is found past the cursor position. | |
266 | |
133 | 267 When searching backwards, searching starts at the start of the line, using the |
268 'c' flag in 'cpoptions' as described above. Then the last match before the | |
269 cursor position is used. | |
270 | |
7 | 271 In Vi the ":tag" command sets the last search pattern when the tag is searched |
272 for. In Vim this is not done, the previous search pattern is still remembered, | |
273 unless the 't' flag is present in 'cpoptions'. The search pattern is always | |
274 put in the search history. | |
275 | |
276 If the 'wrapscan' option is on (which is the default), searches wrap around | |
277 the end of the buffer. If 'wrapscan' is not set, the backward search stops | |
278 at the beginning and the forward search stops at the end of the buffer. If | |
279 'wrapscan' is set and the pattern was not found the error message "pattern | |
280 not found" is given, and the cursor will not be moved. If 'wrapscan' is not | |
281 set the message becomes "search hit BOTTOM without match" when searching | |
282 forward, or "search hit TOP without match" when searching backward. If | |
283 wrapscan is set and the search wraps around the end of the file the message | |
284 "search hit TOP, continuing at BOTTOM" or "search hit BOTTOM, continuing at | |
285 TOP" is given when searching backwards or forwards respectively. This can be | |
286 switched off by setting the 's' flag in the 'shortmess' option. The highlight | |
287 method 'w' is used for this message (default: standout). | |
288 | |
289 *search-range* | |
625 | 290 You can limit the search command "/" to a certain range of lines by including |
291 \%>l items. For example, to match the word "limit" below line 199 and above | |
292 line 300: > | |
293 /\%>199l\%<300llimit | |
294 Also see |/\%>l|. | |
295 | |
296 Another way is to use the ":substitute" command with the 'c' flag. Example: > | |
7 | 297 :.,300s/Pattern//gc |
298 This command will search from the cursor position until line 300 for | |
299 "Pattern". At the match, you will be asked to type a character. Type 'q' to | |
300 stop at this match, type 'n' to find the next match. | |
301 | |
302 The "*", "#", "g*" and "g#" commands look for a word near the cursor in this | |
303 order, the first one that is found is used: | |
304 - The keyword currently under the cursor. | |
305 - The first keyword to the right of the cursor, in the same line. | |
306 - The WORD currently under the cursor. | |
307 - The first WORD to the right of the cursor, in the same line. | |
308 The keyword may only contain letters and characters in 'iskeyword'. | |
309 The WORD may contain any non-blanks (<Tab>s and/or <Space>s). | |
310 Note that if you type with ten fingers, the characters are easy to remember: | |
311 the "#" is under your left hand middle finger (search to the left and up) and | |
312 the "*" is under your right hand middle finger (search to the right and down). | |
313 (this depends on your keyboard layout though). | |
314 | |
14372 | 315 *E956* |
316 In very rare cases a regular expression is used recursively. This can happen | |
15033 | 317 when executing a pattern takes a long time and when checking for messages on |
14372 | 318 channels a callback is invoked that also uses a pattern or an autocommand is |
319 triggered. In most cases this should be fine, but if a pattern is in use when | |
320 it's used again it fails. Usually this means there is something wrong with | |
321 the pattern. | |
322 | |
7 | 323 ============================================================================== |
324 2. The definition of a pattern *search-pattern* *pattern* *[pattern]* | |
325 *regular-expression* *regexp* *Pattern* | |
27036 | 326 *E383* *E476* |
7 | 327 |
328 For starters, read chapter 27 of the user manual |usr_27.txt|. | |
329 | |
330 */bar* */\bar* */pattern* | |
331 1. A pattern is one or more branches, separated by "\|". It matches anything | |
332 that matches one of the branches. Example: "foo\|beep" matches "foo" and | |
333 matches "beep". If more than one branch matches, the first one is used. | |
334 | |
335 pattern ::= branch | |
336 or branch \| branch | |
337 or branch \| branch \| branch | |
338 etc. | |
339 | |
340 */branch* */\&* | |
341 2. A branch is one or more concats, separated by "\&". It matches the last | |
342 concat, but only if all the preceding concats also match at the same | |
343 position. Examples: | |
344 "foobeep\&..." matches "foo" in "foobeep". | |
345 ".*Peter\&.*Bob" matches in a line containing both "Peter" and "Bob" | |
346 | |
347 branch ::= concat | |
348 or concat \& concat | |
349 or concat \& concat \& concat | |
350 etc. | |
351 | |
352 */concat* | |
353 3. A concat is one or more pieces, concatenated. It matches a match for the | |
354 first piece, followed by a match for the second piece, etc. Example: | |
355 "f[0-9]b", first matches "f", then a digit and then "b". | |
356 | |
357 concat ::= piece | |
358 or piece piece | |
359 or piece piece piece | |
360 etc. | |
361 | |
362 */piece* | |
363 4. A piece is an atom, possibly followed by a multi, an indication of how many | |
364 times the atom can be matched. Example: "a*" matches any sequence of "a" | |
365 characters: "", "a", "aa", etc. See |/multi|. | |
366 | |
367 piece ::= atom | |
368 or atom multi | |
369 | |
370 */atom* | |
371 5. An atom can be one of a long list of items. Many atoms match one character | |
372 in the text. It is often an ordinary character or a character class. | |
23164 | 373 Parentheses can be used to make a pattern into an atom. The "\z(\)" |
374 construct is only for syntax highlighting. | |
7 | 375 |
376 atom ::= ordinary-atom |/ordinary-atom| | |
377 or \( pattern \) |/\(| | |
378 or \%( pattern \) |/\%(| | |
379 or \z( pattern \) |/\z(| | |
380 | |
381 | |
5146 | 382 */\%#=* *two-engines* *NFA* |
4444 | 383 Vim includes two regexp engines: |
384 1. An old, backtracking engine that supports everything. | |
10191
01521953bdf1
commit https://github.com/vim/vim/commit/220adb1e9f9e0b27d28185167d2730bf2f93057d
Christian Brabandt <cb@256bit.org>
parents:
9286
diff
changeset
|
385 2. A new, NFA engine that works much faster on some patterns, possibly slower |
01521953bdf1
commit https://github.com/vim/vim/commit/220adb1e9f9e0b27d28185167d2730bf2f93057d
Christian Brabandt <cb@256bit.org>
parents:
9286
diff
changeset
|
386 on some patterns. |
28911
e25196adb7c1
patch 8.2.4978: no error if engine selection atom is not at the start
Bram Moolenaar <Bram@vim.org>
parents:
28010
diff
changeset
|
387 *E1281* |
4444 | 388 Vim will automatically select the right engine for you. However, if you run |
389 into a problem or want to specifically select one engine or the other, you can | |
390 prepend one of the following to the pattern: | |
391 | |
392 \%#=0 Force automatic selection. Only has an effect when | |
393 'regexpengine' has been set to a non-zero value. | |
394 \%#=1 Force using the old engine. | |
395 \%#=2 Force using the NFA engine. | |
396 | |
397 You can also use the 'regexpengine' option to change the default. | |
398 | |
399 *E864* *E868* *E874* *E875* *E876* *E877* *E878* | |
400 If selecting the NFA engine and it runs into something that is not implemented | |
401 the pattern will not match. This is only useful when debugging Vim. | |
402 | |
7 | 403 ============================================================================== |
840 | 404 3. Magic */magic* |
405 | |
23466 | 406 Some characters in the pattern, such as letters, are taken literally. They |
407 match exactly the same character in the text. When preceded with a backslash | |
408 however, these characters may get a special meaning. For example, "a" matches | |
409 the letter "a", while "\a" matches any alphabetic character. | |
840 | 410 |
411 Other characters have a special meaning without a backslash. They need to be | |
23466 | 412 preceded with a backslash to match literally. For example "." matches any |
413 character while "\." matches a dot. | |
840 | 414 |
415 If a character is taken literally or not depends on the 'magic' option and the | |
23466 | 416 items in the pattern mentioned next. The 'magic' option should always be set, |
417 but it can be switched off for Vi compatibility. We mention the effect of | |
418 'nomagic' here for completeness, but we recommend against using that. | |
840 | 419 */\m* */\M* |
420 Use of "\m" makes the pattern after it be interpreted as if 'magic' is set, | |
421 ignoring the actual value of the 'magic' option. | |
422 Use of "\M" makes the pattern after it be interpreted as if 'nomagic' is used. | |
423 */\v* */\V* | |
15281 | 424 Use of "\v" means that after it, all ASCII characters except '0'-'9', 'a'-'z', |
425 'A'-'Z' and '_' have special meaning: "very magic" | |
840 | 426 |
23466 | 427 Use of "\V" means that after it, only a backslash and the terminating |
428 character (usually / or ?) have special meaning: "very nomagic" | |
840 | 429 |
430 Examples: | |
431 after: \v \m \M \V matches ~ | |
432 'magic' 'nomagic' | |
23466 | 433 a a a a literal 'a' |
434 \a \a \a \a any alphabetic character | |
435 . . \. \. any character | |
436 \. \. . . literal dot | |
437 $ $ $ \$ end-of-line | |
840 | 438 * * \* \* any number of the previous atom |
7384
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6697
diff
changeset
|
439 ~ ~ \~ \~ latest substitute string |
23466 | 440 () \(\) \(\) \(\) group as an atom |
441 | \| \| \| nothing: separates alternatives | |
840 | 442 \\ \\ \\ \\ literal backslash |
23466 | 443 \{ { { { literal curly brace |
840 | 444 |
445 {only Vim supports \m, \M, \v and \V} | |
446 | |
23466 | 447 If you want to you can make a pattern immune to the 'magic' option being set |
448 or not by putting "\m" or "\M" at the start of the pattern. | |
840 | 449 |
450 ============================================================================== | |
7 | 451 4. Overview of pattern items *pattern-overview* |
4444 | 452 *E865* *E866* *E867* *E869* |
7 | 453 |
454 Overview of multi items. */multi* *E61* *E62* | |
4444 | 455 More explanation and examples below, follow the links. *E64* *E871* |
7 | 456 |
457 multi ~ | |
458 'magic' 'nomagic' matches of the preceding atom ~ | |
459 |/star| * \* 0 or more as many as possible | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
460 |/\+| \+ \+ 1 or more as many as possible |
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
461 |/\=| \= \= 0 or 1 as many as possible |
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
462 |/\?| \? \? 0 or 1 as many as possible |
7 | 463 |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
464 |/\{| \{n,m} \{n,m} n to m as many as possible |
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
465 \{n} \{n} n exactly |
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
466 \{n,} \{n,} at least n as many as possible |
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
467 \{,m} \{,m} 0 to m as many as possible |
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
468 \{} \{} 0 or more as many as possible (same as *) |
7 | 469 |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
470 |/\{-| \{-n,m} \{-n,m} n to m as few as possible |
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
471 \{-n} \{-n} n exactly |
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
472 \{-n,} \{-n,} at least n as few as possible |
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
473 \{-,m} \{-,m} 0 to m as few as possible |
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
474 \{-} \{-} 0 or more as few as possible |
7 | 475 |
476 *E59* | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
477 |/\@>| \@> \@> 1, like matching a whole pattern |
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
478 |/\@=| \@= \@= nothing, requires a match |/zero-width| |
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
479 |/\@!| \@! \@! nothing, requires NO match |/zero-width| |
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
480 |/\@<=| \@<= \@<= nothing, requires a match behind |/zero-width| |
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
481 |/\@<!| \@<! \@<! nothing, requires NO match behind |/zero-width| |
7 | 482 |
483 | |
484 Overview of ordinary atoms. */ordinary-atom* | |
485 More explanation and examples below, follow the links. | |
486 | |
487 ordinary atom ~ | |
488 magic nomagic matches ~ | |
489 |/^| ^ ^ start-of-line (at start of pattern) |/zero-width| | |
490 |/\^| \^ \^ literal '^' | |
491 |/\_^| \_^ \_^ start-of-line (used anywhere) |/zero-width| | |
492 |/$| $ $ end-of-line (at end of pattern) |/zero-width| | |
493 |/\$| \$ \$ literal '$' | |
494 |/\_$| \_$ \_$ end-of-line (used anywhere) |/zero-width| | |
495 |/.| . \. any single character (not an end-of-line) | |
496 |/\_.| \_. \_. any single character or end-of-line | |
497 |/\<| \< \< beginning of a word |/zero-width| | |
498 |/\>| \> \> end of a word |/zero-width| | |
499 |/\zs| \zs \zs anything, sets start of match | |
500 |/\ze| \ze \ze anything, sets end of match | |
501 |/\%^| \%^ \%^ beginning of file |/zero-width| *E71* | |
502 |/\%$| \%$ \%$ end of file |/zero-width| | |
640 | 503 |/\%V| \%V \%V inside Visual area |/zero-width| |
7 | 504 |/\%#| \%# \%# cursor position |/zero-width| |
640 | 505 |/\%'m| \%'m \%'m mark m position |/zero-width| |
7 | 506 |/\%l| \%23l \%23l in line 23 |/zero-width| |
507 |/\%c| \%23c \%23c in column 23 |/zero-width| | |
508 |/\%v| \%23v \%23v in virtual column 23 |/zero-width| | |
509 | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
510 Character classes: */character-classes* |
7384
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6697
diff
changeset
|
511 magic nomagic matches ~ |
7 | 512 |/\i| \i \i identifier character (see 'isident' option) |
513 |/\I| \I \I like "\i", but excluding digits | |
514 |/\k| \k \k keyword character (see 'iskeyword' option) | |
515 |/\K| \K \K like "\k", but excluding digits | |
516 |/\f| \f \f file name character (see 'isfname' option) | |
517 |/\F| \F \F like "\f", but excluding digits | |
518 |/\p| \p \p printable character (see 'isprint' option) | |
519 |/\P| \P \P like "\p", but excluding digits | |
520 |/\s| \s \s whitespace character: <Space> and <Tab> | |
521 |/\S| \S \S non-whitespace character; opposite of \s | |
522 |/\d| \d \d digit: [0-9] | |
523 |/\D| \D \D non-digit: [^0-9] | |
524 |/\x| \x \x hex digit: [0-9A-Fa-f] | |
525 |/\X| \X \X non-hex digit: [^0-9A-Fa-f] | |
526 |/\o| \o \o octal digit: [0-7] | |
527 |/\O| \O \O non-octal digit: [^0-7] | |
528 |/\w| \w \w word character: [0-9A-Za-z_] | |
529 |/\W| \W \W non-word character: [^0-9A-Za-z_] | |
530 |/\h| \h \h head of word character: [A-Za-z_] | |
531 |/\H| \H \H non-head of word character: [^A-Za-z_] | |
532 |/\a| \a \a alphabetic character: [A-Za-z] | |
533 |/\A| \A \A non-alphabetic character: [^A-Za-z] | |
534 |/\l| \l \l lowercase character: [a-z] | |
535 |/\L| \L \L non-lowercase character: [^a-z] | |
536 |/\u| \u \u uppercase character: [A-Z] | |
537 |/\U| \U \U non-uppercase character [^A-Z] | |
538 |/\_| \_x \_x where x is any of the characters above: character | |
539 class with end-of-line included | |
540 (end of character classes) | |
541 | |
7384
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6697
diff
changeset
|
542 magic nomagic matches ~ |
7 | 543 |/\e| \e \e <Esc> |
544 |/\t| \t \t <Tab> | |
545 |/\r| \r \r <CR> | |
546 |/\b| \b \b <BS> | |
547 |/\n| \n \n end-of-line | |
548 |/~| ~ \~ last given substitute string | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
549 |/\1| \1 \1 same string as matched by first \(\) |
7 | 550 |/\2| \2 \2 Like "\1", but uses second \(\) |
551 ... | |
552 |/\9| \9 \9 Like "\1", but uses ninth \(\) | |
553 *E68* | |
554 |/\z1| \z1 \z1 only for syntax highlighting, see |:syn-ext-match| | |
555 ... | |
556 |/\z1| \z9 \z9 only for syntax highlighting, see |:syn-ext-match| | |
557 | |
558 x x a character with no special meaning matches itself | |
559 | |
560 |/[]| [] \[] any character specified inside the [] | |
4119 | 561 |/\%[]| \%[] \%[] a sequence of optionally matched atoms |
7 | 562 |
1620 | 563 |/\c| \c \c ignore case, do not use the 'ignorecase' option |
564 |/\C| \C \C match case, do not use the 'ignorecase' option | |
4444 | 565 |/\Z| \Z \Z ignore differences in Unicode "combining characters". |
566 Useful when searching voweled Hebrew or Arabic text. | |
567 | |
7384
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6697
diff
changeset
|
568 magic nomagic matches ~ |
7 | 569 |/\m| \m \m 'magic' on for the following chars in the pattern |
570 |/\M| \M \M 'magic' off for the following chars in the pattern | |
571 |/\v| \v \v the following chars in the pattern are "very magic" | |
572 |/\V| \V \V the following chars in the pattern are "very nomagic" | |
4444 | 573 |/\%#=| \%#=1 \%#=1 select regexp engine |/zero-width| |
7 | 574 |
2033
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
575 |/\%d| \%d \%d match specified decimal character (eg \%d123) |
24 | 576 |/\%x| \%x \%x match specified hex character (eg \%x2a) |
577 |/\%o| \%o \%o match specified octal character (eg \%o040) | |
578 |/\%u| \%u \%u match specified multibyte character (eg \%u20ac) | |
579 |/\%U| \%U \%U match specified large multibyte character (eg | |
580 \%U12345678) | |
5901 | 581 |/\%C| \%C \%C match any composing characters |
7 | 582 |
583 Example matches ~ | |
584 \<\I\i* or | |
585 \<\h\w* | |
586 \<[a-zA-Z_][a-zA-Z0-9_]* | |
587 An identifier (e.g., in a C program). | |
588 | |
589 \(\.$\|\. \) A period followed by <EOL> or a space. | |
590 | |
591 [.!?][])"']*\($\|[ ]\) A search pattern that finds the end of a sentence, | |
592 with almost the same definition as the ")" command. | |
593 | |
594 cat\Z Both "cat" and "càt" ("a" followed by 0x0300) | |
595 Does not match "càt" (character 0x00e0), even | |
596 though it may look the same. | |
597 | |
598 | |
599 ============================================================================== | |
600 5. Multi items *pattern-multi-items* | |
601 | |
602 An atom can be followed by an indication of how many times the atom can be | |
603 matched and in what way. This is called a multi. See |/multi| for an | |
604 overview. | |
605 | |
8951
0bdeaf7092bc
commit https://github.com/vim/vim/commit/aa3b15dbebf333282503d6031e2f9ba6ee4398ed
Christian Brabandt <cb@256bit.org>
parents:
8876
diff
changeset
|
606 */star* */\star* |
7 | 607 * (use \* when 'magic' is not set) |
608 Matches 0 or more of the preceding atom, as many as possible. | |
609 Example 'nomagic' matches ~ | |
610 a* a\* "", "a", "aa", "aaa", etc. | |
611 .* \.\* anything, also an empty string, no end-of-line | |
612 \_.* \_.\* everything up to the end of the buffer | |
613 \_.*END \_.\*END everything up to and including the last "END" | |
614 in the buffer | |
615 | |
616 Exception: When "*" is used at the start of the pattern or just after | |
617 "^" it matches the star character. | |
618 | |
619 Be aware that repeating "\_." can match a lot of text and take a long | |
620 time. For example, "\_.*END" matches all text from the current | |
621 position to the last occurrence of "END" in the file. Since the "*" | |
622 will match as many as possible, this first skips over all lines until | |
623 the end of the file and then tries matching "END", backing up one | |
624 character at a time. | |
625 | |
8951
0bdeaf7092bc
commit https://github.com/vim/vim/commit/aa3b15dbebf333282503d6031e2f9ba6ee4398ed
Christian Brabandt <cb@256bit.org>
parents:
8876
diff
changeset
|
626 */\+* |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
627 \+ Matches 1 or more of the preceding atom, as many as possible. |
7 | 628 Example matches ~ |
629 ^.\+$ any non-empty line | |
630 \s\+ white space of at least one character | |
631 | |
632 */\=* | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
633 \= Matches 0 or 1 of the preceding atom, as many as possible. |
7 | 634 Example matches ~ |
635 foo\= "fo" and "foo" | |
636 | |
637 */\?* | |
638 \? Just like \=. Cannot be used when searching backwards with the "?" | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
639 command. |
7 | 640 |
8951
0bdeaf7092bc
commit https://github.com/vim/vim/commit/aa3b15dbebf333282503d6031e2f9ba6ee4398ed
Christian Brabandt <cb@256bit.org>
parents:
8876
diff
changeset
|
641 */\{* *E60* *E554* *E870* |
7 | 642 \{n,m} Matches n to m of the preceding atom, as many as possible |
643 \{n} Matches n of the preceding atom | |
644 \{n,} Matches at least n of the preceding atom, as many as possible | |
645 \{,m} Matches 0 to m of the preceding atom, as many as possible | |
646 \{} Matches 0 or more of the preceding atom, as many as possible (like *) | |
647 */\{-* | |
648 \{-n,m} matches n to m of the preceding atom, as few as possible | |
649 \{-n} matches n of the preceding atom | |
650 \{-n,} matches at least n of the preceding atom, as few as possible | |
651 \{-,m} matches 0 to m of the preceding atom, as few as possible | |
652 \{-} matches 0 or more of the preceding atom, as few as possible | |
653 | |
168 | 654 n and m are positive decimal numbers or zero |
1125 | 655 *non-greedy* |
7 | 656 If a "-" appears immediately after the "{", then a shortest match |
657 first algorithm is used (see example below). In particular, "\{-}" is | |
658 the same as "*" but uses the shortest match first algorithm. BUT: A | |
659 match that starts earlier is preferred over a shorter match: "a\{-}b" | |
660 matches "aaab" in "xaaab". | |
661 | |
662 Example matches ~ | |
663 ab\{2,3}c "abbc" or "abbbc" | |
1620 | 664 a\{5} "aaaaa" |
665 ab\{2,}c "abbc", "abbbc", "abbbbc", etc. | |
666 ab\{,3}c "ac", "abc", "abbc" or "abbbc" | |
7 | 667 a[bc]\{3}d "abbbd", "abbcd", "acbcd", "acccd", etc. |
668 a\(bc\)\{1,2}d "abcd" or "abcbcd" | |
669 a[bc]\{-}[cd] "abc" in "abcd" | |
670 a[bc]*[cd] "abcd" in "abcd" | |
671 | |
672 The } may optionally be preceded with a backslash: \{n,m\}. | |
673 | |
674 */\@=* | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
675 \@= Matches the preceding atom with zero width. |
7 | 676 Like "(?=pattern)" in Perl. |
677 Example matches ~ | |
678 foo\(bar\)\@= "foo" in "foobar" | |
679 foo\(bar\)\@=foo nothing | |
680 */zero-width* | |
681 When using "\@=" (or "^", "$", "\<", "\>") no characters are included | |
682 in the match. These items are only used to check if a match can be | |
683 made. This can be tricky, because a match with following items will | |
684 be done in the same position. The last example above will not match | |
685 "foobarfoo", because it tries match "foo" in the same position where | |
686 "bar" matched. | |
687 | |
688 Note that using "\&" works the same as using "\@=": "foo\&.." is the | |
689 same as "\(foo\)\@=..". But using "\&" is easier, you don't need the | |
23164 | 690 parentheses. |
7 | 691 |
692 | |
693 */\@!* | |
694 \@! Matches with zero width if the preceding atom does NOT match at the | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
695 current position. |/zero-width| |
3513 | 696 Like "(?!pattern)" in Perl. |
7 | 697 Example matches ~ |
698 foo\(bar\)\@! any "foo" not followed by "bar" | |
3513 | 699 a.\{-}p\@! "a", "ap", "app", "appp", etc. not immediately |
2908 | 700 followed by a "p" |
7 | 701 if \(\(then\)\@!.\)*$ "if " not followed by "then" |
702 | |
703 Using "\@!" is tricky, because there are many places where a pattern | |
704 does not match. "a.*p\@!" will match from an "a" to the end of the | |
705 line, because ".*" can match all characters in the line and the "p" | |
706 doesn't match at the end of the line. "a.\{-}p\@!" will match any | |
3513 | 707 "a", "ap", "app", etc. that isn't followed by a "p", because the "." |
7 | 708 can match a "p" and "p\@!" doesn't match after that. |
709 | |
710 You can't use "\@!" to look for a non-match before the matching | |
711 position: "\(foo\)\@!bar" will match "bar" in "foobar", because at the | |
712 position where "bar" matches, "foo" does not match. To avoid matching | |
713 "foobar" you could use "\(foo\)\@!...bar", but that doesn't match a | |
237 | 714 bar at the start of a line. Use "\(foo\)\@<!bar". |
7 | 715 |
2788 | 716 Useful example: to find "foo" in a line that does not contain "bar": > |
717 /^\%(.*bar\)\@!.*\zsfoo | |
718 < This pattern first checks that there is not a single position in the | |
719 line where "bar" matches. If ".*bar" matches somewhere the \@! will | |
720 reject the pattern. When there is no match any "foo" will be found. | |
721 The "\zs" is to have the match start just before "foo". | |
722 | |
7 | 723 */\@<=* |
724 \@<= Matches with zero width if the preceding atom matches just before what | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
725 follows. |/zero-width| |
3513 | 726 Like "(?<=pattern)" in Perl, but Vim allows non-fixed-width patterns. |
7 | 727 Example matches ~ |
728 \(an\_s\+\)\@<=file "file" after "an" and white space or an | |
729 end-of-line | |
730 For speed it's often much better to avoid this multi. Try using "\zs" | |
731 instead |/\zs|. To match the same as the above example: | |
732 an\_s\+\zsfile | |
4681
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
733 At least set a limit for the look-behind, see below. |
7 | 734 |
735 "\@<=" and "\@<!" check for matches just before what follows. | |
736 Theoretically these matches could start anywhere before this position. | |
737 But to limit the time needed, only the line where what follows matches | |
738 is searched, and one line before that (if there is one). This should | |
739 be sufficient to match most things and not be too slow. | |
6153 | 740 |
741 In the old regexp engine the part of the pattern after "\@<=" and | |
742 "\@<!" are checked for a match first, thus things like "\1" don't work | |
743 to reference \(\) inside the preceding atom. It does work the other | |
744 way around: | |
745 Bad example matches ~ | |
746 \%#=1\1\@<=,\([a-z]\+\) ",abc" in "abc,abc" | |
747 | |
748 However, the new regexp engine works differently, it is better to not | |
749 rely on this behavior, do not use \@<= if it can be avoided: | |
750 Example matches ~ | |
751 \([a-z]\+\)\zs,\1 ",abc" in "abc,abc" | |
7 | 752 |
4681
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
753 \@123<= |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
754 Like "\@<=" but only look back 123 bytes. This avoids trying lots |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
755 of matches that are known to fail and make executing the pattern very |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
756 slow. Example, check if there is a "<" just before "span": |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
757 /<\@1<=span |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
758 This will try matching "<" only one byte before "span", which is the |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
759 only place that works anyway. |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
760 After crossing a line boundary, the limit is relative to the end of |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
761 the line. Thus the characters at the start of the line with the match |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
762 are not counted (this is just to keep it simple). |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
763 The number zero is the same as no limit. |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
764 |
7 | 765 */\@<!* |
766 \@<! Matches with zero width if the preceding atom does NOT match just | |
767 before what follows. Thus this matches if there is no position in the | |
768 current or previous line where the atom matches such that it ends just | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
769 before what follows. |/zero-width| |
3513 | 770 Like "(?<!pattern)" in Perl, but Vim allows non-fixed-width patterns. |
7 | 771 The match with the preceding atom is made to end just before the match |
772 with what follows, thus an atom that ends in ".*" will work. | |
773 Warning: This can be slow (because many positions need to be checked | |
4681
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
774 for a match). Use a limit if you can, see below. |
7 | 775 Example matches ~ |
776 \(foo\)\@<!bar any "bar" that's not in "foobar" | |
1620 | 777 \(\/\/.*\)\@<!in "in" which is not after "//" |
7 | 778 |
4681
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
779 \@123<! |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
780 Like "\@<!" but only look back 123 bytes. This avoids trying lots of |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
781 matches that are known to fail and make executing the pattern very |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
782 slow. |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
783 |
7 | 784 */\@>* |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
785 \@> Matches the preceding atom like matching a whole pattern. |
1620 | 786 Like "(?>pattern)" in Perl. |
7 | 787 Example matches ~ |
788 \(a*\)\@>a nothing (the "a*" takes all the "a"'s, there can't be | |
789 another one following) | |
790 | |
791 This matches the preceding atom as if it was a pattern by itself. If | |
792 it doesn't match, there is no retry with shorter sub-matches or | |
793 anything. Observe this difference: "a*b" and "a*ab" both match | |
794 "aaab", but in the second case the "a*" matches only the first two | |
795 "a"s. "\(a*\)\@>ab" will not match "aaab", because the "a*" matches | |
796 the "aaa" (as many "a"s as possible), thus the "ab" can't match. | |
797 | |
798 | |
799 ============================================================================== | |
800 6. Ordinary atoms *pattern-atoms* | |
801 | |
802 An ordinary atom can be: | |
803 | |
804 */^* | |
805 ^ At beginning of pattern or after "\|", "\(", "\%(" or "\n": matches | |
806 start-of-line; at other positions, matches literal '^'. |/zero-width| | |
807 Example matches ~ | |
808 ^beep( the start of the C function "beep" (probably). | |
809 | |
810 */\^* | |
22171 | 811 \^ Matches literal '^'. Can be used at any position in the pattern, but |
812 not inside []. | |
7 | 813 |
814 */\_^* | |
815 \_^ Matches start-of-line. |/zero-width| Can be used at any position in | |
22171 | 816 the pattern, but not inside []. |
7 | 817 Example matches ~ |
818 \_s*\_^foo white space and blank lines and then "foo" at | |
819 start-of-line | |
820 | |
821 */$* | |
1620 | 822 $ At end of pattern or in front of "\|", "\)" or "\n" ('magic' on): |
7 | 823 matches end-of-line <EOL>; at other positions, matches literal '$'. |
824 |/zero-width| | |
825 | |
826 */\$* | |
22171 | 827 \$ Matches literal '$'. Can be used at any position in the pattern, but |
828 not inside []. | |
7 | 829 |
830 */\_$* | |
831 \_$ Matches end-of-line. |/zero-width| Can be used at any position in the | |
22171 | 832 pattern, but not inside []. Note that "a\_$b" never matches, since |
833 "b" cannot match an end-of-line. Use "a\nb" instead |/\n|. | |
7 | 834 Example matches ~ |
835 foo\_$\_s* "foo" at end-of-line and following white space and | |
836 blank lines | |
837 | |
838 . (with 'nomagic': \.) */.* */\.* | |
839 Matches any single character, but not an end-of-line. | |
840 | |
841 */\_.* | |
842 \_. Matches any single character or end-of-line. | |
843 Careful: "\_.*" matches all text to the end of the buffer! | |
844 | |
845 */\<* | |
846 \< Matches the beginning of a word: The next char is the first char of a | |
847 word. The 'iskeyword' option specifies what is a word character. | |
848 |/zero-width| | |
849 | |
850 */\>* | |
851 \> Matches the end of a word: The previous char is the last char of a | |
237 | 852 word. The 'iskeyword' option specifies what is a word character. |
7 | 853 |/zero-width| |
854 | |
855 */\zs* | |
22171 | 856 \zs Matches at any position, but not inside [], and sets the start of the |
857 match there: The next char is the first char of the whole match. | |
858 |/zero-width| | |
7 | 859 Example: > |
860 /^\s*\zsif | |
861 < matches an "if" at the start of a line, ignoring white space. | |
862 Can be used multiple times, the last one encountered in a matching | |
237 | 863 branch is used. Example: > |
7 | 864 /\(.\{-}\zsFab\)\{3} |
865 < Finds the third occurrence of "Fab". | |
6180 | 866 This cannot be followed by a multi. *E888* |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
867 {not available when compiled without the |+syntax| feature} |
7 | 868 */\ze* |
22171 | 869 \ze Matches at any position, but not inside [], and sets the end of the |
870 match there: The previous char is the last char of the whole match. | |
871 |/zero-width| | |
7 | 872 Can be used multiple times, the last one encountered in a matching |
873 branch is used. | |
874 Example: "end\ze\(if\|for\)" matches the "end" in "endif" and | |
875 "endfor". | |
6213 | 876 This cannot be followed by a multi. |E888| |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
877 {not available when compiled without the |+syntax| feature} |
7 | 878 |
879 */\%^* *start-of-file* | |
880 \%^ Matches start of the file. When matching with a string, matches the | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
881 start of the string. |
7 | 882 For example, to find the first "VIM" in a file: > |
883 /\%^\_.\{-}\zsVIM | |
884 < | |
885 */\%$* *end-of-file* | |
886 \%$ Matches end of the file. When matching with a string, matches the | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
887 end of the string. |
7 | 888 Note that this does NOT find the last "VIM" in a file: > |
889 /VIM\_.\{-}\%$ | |
890 < It will find the next VIM, because the part after it will always | |
891 match. This one will find the last "VIM" in the file: > | |
892 /VIM\ze\(\(VIM\)\@!\_.\)*\%$ | |
893 < This uses |/\@!| to ascertain that "VIM" does NOT match in any | |
894 position after the first "VIM". | |
895 Searching from the end of the file backwards is easier! | |
896 | |
640 | 897 */\%V* |
898 \%V Match inside the Visual area. When Visual mode has already been | |
899 stopped match in the area that |gv| would reselect. | |
2033
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
900 This is a |/zero-width| match. To make sure the whole pattern is |
11062 | 901 inside the Visual area put it at the start and just before the end of |
902 the pattern, e.g.: > | |
903 /\%Vfoo.*ba\%Vr | |
11160 | 904 < This also works if only "foo bar" was Visually selected. This: > |
905 /\%Vfoo.*bar\%V | |
11062 | 906 < would match "foo bar" if the Visual selection continues after the "r". |
907 Only works for the current buffer. | |
640 | 908 |
7 | 909 */\%#* *cursor-position* |
910 \%# Matches with the cursor position. Only works when matching in a | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
911 buffer displayed in a window. |
7 | 912 WARNING: When the cursor is moved after the pattern was used, the |
913 result becomes invalid. Vim doesn't automatically update the matches. | |
914 This is especially relevant for syntax highlighting and 'hlsearch'. | |
915 In other words: When the cursor moves the display isn't updated for | |
916 this change. An update is done for lines which are changed (the whole | |
917 line is updated) or when using the |CTRL-L| command (the whole screen | |
918 is updated). Example, to highlight the word under the cursor: > | |
919 /\k*\%#\k* | |
920 < When 'hlsearch' is set and you move the cursor around and make changes | |
921 this will clearly show when the match is updated or not. | |
922 | |
640 | 923 */\%'m* */\%<'m* */\%>'m* |
924 \%'m Matches with the position of mark m. | |
925 \%<'m Matches before the position of mark m. | |
926 \%>'m Matches after the position of mark m. | |
927 Example, to highlight the text from mark 's to 'e: > | |
928 /.\%>'s.*\%<'e.. | |
929 < Note that two dots are required to include mark 'e in the match. That | |
930 is because "\%<'e" matches at the character before the 'e mark, and | |
931 since it's a |/zero-width| match it doesn't include that character. | |
932 WARNING: When the mark is moved after the pattern was used, the result | |
933 becomes invalid. Vim doesn't automatically update the matches. | |
651 | 934 Similar to moving the cursor for "\%#" |/\%#|. |
640 | 935 |
29533 | 936 */\%l* */\%>l* */\%<l* *E951* *E1204* *E1273* |
7 | 937 \%23l Matches in a specific line. |
625 | 938 \%<23l Matches above a specific line (lower line number). |
939 \%>23l Matches below a specific line (higher line number). | |
27036 | 940 \%.l Matches at the cursor line. |
941 \%<.l Matches above the cursor line. | |
942 \%>.l Matches below the cursor line. | |
25973 | 943 These six can be used to match specific lines in a buffer. The "23" |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
944 can be any line number. The first line is 1. |
7 | 945 WARNING: When inserting or deleting lines Vim does not automatically |
946 update the matches. This means Syntax highlighting quickly becomes | |
25402 | 947 wrong. Also when referring to the cursor position (".") and |
25147
10b269321459
patch 8.2.3110: a pattern that matches the cursor position is complicated
Bram Moolenaar <Bram@vim.org>
parents:
24911
diff
changeset
|
948 the cursor moves the display isn't updated for this change. An update |
10b269321459
patch 8.2.3110: a pattern that matches the cursor position is complicated
Bram Moolenaar <Bram@vim.org>
parents:
24911
diff
changeset
|
949 is done when using the |CTRL-L| command (the whole screen is updated). |
7 | 950 Example, to highlight the line where the cursor currently is: > |
25147
10b269321459
patch 8.2.3110: a pattern that matches the cursor position is complicated
Bram Moolenaar <Bram@vim.org>
parents:
24911
diff
changeset
|
951 :exe '/\%' . line(".") . 'l' |
10b269321459
patch 8.2.3110: a pattern that matches the cursor position is complicated
Bram Moolenaar <Bram@vim.org>
parents:
24911
diff
changeset
|
952 < Alternatively use: > |
10b269321459
patch 8.2.3110: a pattern that matches the cursor position is complicated
Bram Moolenaar <Bram@vim.org>
parents:
24911
diff
changeset
|
953 /\%.l |
7 | 954 < When 'hlsearch' is set and you move the cursor around and make changes |
955 this will clearly show when the match is updated or not. | |
956 | |
957 */\%c* */\%>c* */\%<c* | |
958 \%23c Matches in a specific column. | |
959 \%<23c Matches before a specific column. | |
960 \%>23c Matches after a specific column. | |
27036 | 961 \%.c Matches at the cursor column. |
962 \%<.c Matches before the cursor column. | |
963 \%>.c Matches after the cursor column. | |
25973 | 964 These six can be used to match specific columns in a buffer or string. |
965 The "23" can be any column number. The first column is 1. Actually, | |
966 the column is the byte number (thus it's not exactly right for | |
967 multibyte characters). | |
7 | 968 WARNING: When inserting or deleting text Vim does not automatically |
969 update the matches. This means Syntax highlighting quickly becomes | |
25402 | 970 wrong. Also when referring to the cursor position (".") and |
25147
10b269321459
patch 8.2.3110: a pattern that matches the cursor position is complicated
Bram Moolenaar <Bram@vim.org>
parents:
24911
diff
changeset
|
971 the cursor moves the display isn't updated for this change. An update |
10b269321459
patch 8.2.3110: a pattern that matches the cursor position is complicated
Bram Moolenaar <Bram@vim.org>
parents:
24911
diff
changeset
|
972 is done when using the |CTRL-L| command (the whole screen is updated). |
7 | 973 Example, to highlight the column where the cursor currently is: > |
27903 | 974 :exe '/\%' .. col(".") .. 'c' |
25147
10b269321459
patch 8.2.3110: a pattern that matches the cursor position is complicated
Bram Moolenaar <Bram@vim.org>
parents:
24911
diff
changeset
|
975 < Alternatively use: > |
10b269321459
patch 8.2.3110: a pattern that matches the cursor position is complicated
Bram Moolenaar <Bram@vim.org>
parents:
24911
diff
changeset
|
976 /\%.c |
7 | 977 < When 'hlsearch' is set and you move the cursor around and make changes |
978 this will clearly show when the match is updated or not. | |
979 Example for matching a single byte in column 44: > | |
980 /\%>43c.\%<46c | |
981 < Note that "\%<46c" matches in column 45 when the "." matches a byte in | |
982 column 44. | |
983 */\%v* */\%>v* */\%<v* | |
984 \%23v Matches in a specific virtual column. | |
985 \%<23v Matches before a specific virtual column. | |
986 \%>23v Matches after a specific virtual column. | |
27036 | 987 \%.v Matches at the current virtual column. |
988 \%<.v Matches before the current virtual column. | |
989 \%>.v Matches after the current virtual column. | |
25973 | 990 These six can be used to match specific virtual columns in a buffer or |
991 string. When not matching with a buffer in a window, the option | |
7 | 992 values of the current window are used (e.g., 'tabstop'). |
993 The "23" can be any column number. The first column is 1. | |
994 Note that some virtual column positions will never match, because they | |
1270 | 995 are halfway through a tab or other character that occupies more than |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
996 one screen character. |
7 | 997 WARNING: When inserting or deleting text Vim does not automatically |
283 | 998 update highlighted matches. This means Syntax highlighting quickly |
25402 | 999 becomes wrong. Also when referring to the cursor position (".") and |
25147
10b269321459
patch 8.2.3110: a pattern that matches the cursor position is complicated
Bram Moolenaar <Bram@vim.org>
parents:
24911
diff
changeset
|
1000 the cursor moves the display isn't updated for this change. An update |
10b269321459
patch 8.2.3110: a pattern that matches the cursor position is complicated
Bram Moolenaar <Bram@vim.org>
parents:
24911
diff
changeset
|
1001 is done when using the |CTRL-L| command (the whole screen is updated). |
1620 | 1002 Example, to highlight all the characters after virtual column 72: > |
7 | 1003 /\%>72v.* |
1004 < When 'hlsearch' is set and you move the cursor around and make changes | |
1005 this will clearly show when the match is updated or not. | |
1006 To match the text up to column 17: > | |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9041
diff
changeset
|
1007 /^.*\%17v |
25147
10b269321459
patch 8.2.3110: a pattern that matches the cursor position is complicated
Bram Moolenaar <Bram@vim.org>
parents:
24911
diff
changeset
|
1008 < To match all characters after the current virtual column (where the |
10b269321459
patch 8.2.3110: a pattern that matches the cursor position is complicated
Bram Moolenaar <Bram@vim.org>
parents:
24911
diff
changeset
|
1009 cursor is): > |
10b269321459
patch 8.2.3110: a pattern that matches the cursor position is complicated
Bram Moolenaar <Bram@vim.org>
parents:
24911
diff
changeset
|
1010 /\%>.v.* |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9041
diff
changeset
|
1011 < Column 17 is not included, because this is a |/zero-width| match. To |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9041
diff
changeset
|
1012 include the column use: > |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9041
diff
changeset
|
1013 /^.*\%17v. |
2033
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
1014 < This command does the same thing, but also matches when there is no |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
1015 character in column 17: > |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9041
diff
changeset
|
1016 /^.*\%<18v. |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9041
diff
changeset
|
1017 < Note that without the "^" to anchor the match in the first column, |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9041
diff
changeset
|
1018 this will also highlight column 17: > |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9041
diff
changeset
|
1019 /.*\%17v |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9041
diff
changeset
|
1020 < Column 17 is highlighted by 'hlsearch' because there is another match |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
9041
diff
changeset
|
1021 where ".*" matches zero characters. |
25973 | 1022 |
7 | 1023 |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
1024 Character classes: |
7 | 1025 \i identifier character (see 'isident' option) */\i* |
1026 \I like "\i", but excluding digits */\I* | |
1027 \k keyword character (see 'iskeyword' option) */\k* | |
1028 \K like "\k", but excluding digits */\K* | |
1029 \f file name character (see 'isfname' option) */\f* | |
1030 \F like "\f", but excluding digits */\F* | |
1031 \p printable character (see 'isprint' option) */\p* | |
1032 \P like "\p", but excluding digits */\P* | |
1033 | |
21991 | 1034 NOTE: the above also work for multibyte characters. The ones below only |
7 | 1035 match ASCII characters, as indicated by the range. |
1036 | |
1037 *whitespace* *white-space* | |
1038 \s whitespace character: <Space> and <Tab> */\s* | |
1039 \S non-whitespace character; opposite of \s */\S* | |
1040 \d digit: [0-9] */\d* | |
1041 \D non-digit: [^0-9] */\D* | |
1042 \x hex digit: [0-9A-Fa-f] */\x* | |
1043 \X non-hex digit: [^0-9A-Fa-f] */\X* | |
1044 \o octal digit: [0-7] */\o* | |
1045 \O non-octal digit: [^0-7] */\O* | |
1046 \w word character: [0-9A-Za-z_] */\w* | |
1047 \W non-word character: [^0-9A-Za-z_] */\W* | |
1048 \h head of word character: [A-Za-z_] */\h* | |
1049 \H non-head of word character: [^A-Za-z_] */\H* | |
1050 \a alphabetic character: [A-Za-z] */\a* | |
1051 \A non-alphabetic character: [^A-Za-z] */\A* | |
1052 \l lowercase character: [a-z] */\l* | |
1053 \L non-lowercase character: [^a-z] */\L* | |
1054 \u uppercase character: [A-Z] */\u* | |
3224 | 1055 \U non-uppercase character: [^A-Z] */\U* |
7 | 1056 |
1057 NOTE: Using the atom is faster than the [] form. | |
1058 | |
1059 NOTE: 'ignorecase', "\c" and "\C" are not used by character classes. | |
1060 | |
1061 */\_* *E63* */\_i* */\_I* */\_k* */\_K* */\_f* */\_F* | |
1062 */\_p* */\_P* */\_s* */\_S* */\_d* */\_D* */\_x* */\_X* | |
1063 */\_o* */\_O* */\_w* */\_W* */\_h* */\_H* */\_a* */\_A* | |
1064 */\_l* */\_L* */\_u* */\_U* | |
1065 \_x Where "x" is any of the characters above: The character class with | |
1066 end-of-line added | |
1067 (end of character classes) | |
1068 | |
1069 \e matches <Esc> */\e* | |
1070 \t matches <Tab> */\t* | |
1071 \r matches <CR> */\r* | |
1072 \b matches <BS> */\b* | |
1073 \n matches an end-of-line */\n* | |
1074 When matching in a string instead of buffer text a literal newline | |
1075 character is matched. | |
1076 | |
1077 ~ matches the last given substitute string */~* */\~* | |
1078 | |
1079 \(\) A pattern enclosed by escaped parentheses. */\(* */\(\)* */\)* | |
4444 | 1080 E.g., "\(^a\)" matches 'a' at the start of a line. |
27036 | 1081 There can only be ten of these. You can use "\%(" to add more, but |
1082 not counting it as a sub-expression. | |
4444 | 1083 *E51* *E54* *E55* *E872* *E873* |
7 | 1084 |
1085 \1 Matches the same string that was matched by */\1* *E65* | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
1086 the first sub-expression in \( and \). |
7 | 1087 Example: "\([a-z]\).\1" matches "ata", "ehe", "tot", etc. |
1088 \2 Like "\1", but uses second sub-expression, */\2* | |
1089 ... */\3* | |
1090 \9 Like "\1", but uses ninth sub-expression. */\9* | |
1091 Note: The numbering of groups is done based on which "\(" comes first | |
1092 in the pattern (going left to right), NOT based on what is matched | |
1093 first. | |
1094 | |
1095 \%(\) A pattern enclosed by escaped parentheses. */\%(\)* */\%(* *E53* | |
1096 Just like \(\), but without counting it as a sub-expression. This | |
1097 allows using more groups and it's a little bit faster. | |
1098 | |
1099 x A single character, with no special meaning, matches itself | |
1100 | |
1101 */\* */\\* | |
1102 \x A backslash followed by a single character, with no special meaning, | |
1103 is reserved for future expansions | |
1104 | |
27036 | 1105 [] (with 'nomagic': \[]) */[]* */\[]* */\_[]* */collection* *E76* |
7 | 1106 \_[] |
23164 | 1107 A collection. This is a sequence of characters enclosed in square |
1108 brackets. It matches any single character in the collection. | |
7 | 1109 Example matches ~ |
1110 [xyz] any 'x', 'y' or 'z' | |
1111 [a-zA-Z]$ any alphabetic character at the end of a line | |
1112 \c[a-z]$ same | |
4073 | 1113 [А-яЁё] Russian alphabet (with utf-8 and cp1251) |
1114 | |
1125 | 1115 */[\n]* |
7 | 1116 With "\_" prepended the collection also includes the end-of-line. |
1117 The same can be done by including "\n" in the collection. The | |
1118 end-of-line is also matched when the collection starts with "^"! Thus | |
1119 "\_[^ab]" matches the end-of-line and any character but "a" and "b". | |
1120 This makes it Vi compatible: Without the "\_" or "\n" the collection | |
1121 does not match an end-of-line. | |
484 | 1122 *E769* |
481 | 1123 When the ']' is not there Vim will not give an error message but |
484 | 1124 assume no collection is used. Useful to search for '['. However, you |
6697 | 1125 do get E769 for internal searching. And be aware that in a |
1126 `:substitute` command the whole command becomes the pattern. E.g. | |
1127 ":s/[/x/" searches for "[/x" and replaces it with nothing. It does | |
1128 not search for "[" and replaces it with "x"! | |
481 | 1129 |
11518 | 1130 *E944* *E945* |
7 | 1131 If the sequence begins with "^", it matches any single character NOT |
1132 in the collection: "[^xyz]" matches anything but 'x', 'y' and 'z'. | |
1133 - If two characters in the sequence are separated by '-', this is | |
1134 shorthand for the full list of ASCII characters between them. E.g., | |
11518 | 1135 "[0-9]" matches any decimal digit. If the starting character exceeds |
1136 the ending character, e.g. [c-a], E944 occurs. Non-ASCII characters | |
1137 can be used, but the character values must not be more than 256 apart | |
1138 in the old regexp engine. For example, searching by [\u3000-\u4000] | |
1139 after setting re=1 emits a E945 error. Prepending \%#=2 will fix it. | |
7 | 1140 - A character class expression is evaluated to the set of characters |
1141 belonging to that character class. The following character classes | |
1142 are supported: | |
11267
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1143 Name Func Contents ~ |
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1144 *[:alnum:]* [:alnum:] isalnum ASCII letters and digits |
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1145 *[:alpha:]* [:alpha:] isalpha ASCII letters |
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1146 *[:blank:]* [:blank:] space and tab |
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1147 *[:cntrl:]* [:cntrl:] iscntrl ASCII control characters |
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1148 *[:digit:]* [:digit:] decimal digits '0' to '9' |
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1149 *[:graph:]* [:graph:] isgraph ASCII printable characters excluding |
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1150 space |
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1151 *[:lower:]* [:lower:] (1) lowercase letters (all letters when |
7 | 1152 'ignorecase' is used) |
11267
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1153 *[:print:]* [:print:] (2) printable characters including space |
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1154 *[:punct:]* [:punct:] ispunct ASCII punctuation characters |
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1155 *[:space:]* [:space:] whitespace characters: space, tab, CR, |
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1156 NL, vertical tab, form feed |
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1157 *[:upper:]* [:upper:] (3) uppercase letters (all letters when |
7 | 1158 'ignorecase' is used) |
11267
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1159 *[:xdigit:]* [:xdigit:] hexadecimal digits: 0-9, a-f, A-F |
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1160 *[:return:]* [:return:] the <CR> character |
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1161 *[:tab:]* [:tab:] the <Tab> character |
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1162 *[:escape:]* [:escape:] the <Esc> character |
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1163 *[:backspace:]* [:backspace:] the <BS> character |
15709
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
1164 *[:ident:]* [:ident:] identifier character (same as "\i") |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
1165 *[:keyword:]* [:keyword:] keyword character (same as "\k") |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15281
diff
changeset
|
1166 *[:fname:]* [:fname:] file name character (same as "\f") |
23164 | 1167 The square brackets in character class expressions are additional to |
1168 the square brackets delimiting a collection. For example, the | |
1169 following is a plausible pattern for a UNIX filename: | |
1170 "[-./[:alnum:]_~]\+". That is, a list of at least one character, | |
1171 each of which is either '-', '.', '/', alphabetic, numeric, '_' or | |
1172 '~'. | |
7477
05cf4cc72a9f
commit https://github.com/vim/vim/commit/fa7353428f705f7a13465a1943dddeede4083023
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
1173 These items only work for 8-bit characters, except [:lower:] and |
21991 | 1174 [:upper:] also work for multibyte characters when using the new |
8876
47f17f66da3d
commit https://github.com/vim/vim/commit/03413f44167c4b5cd0012def9bb331e2518c83cf
Christian Brabandt <cb@256bit.org>
parents:
7477
diff
changeset
|
1175 regexp engine. See |two-engines|. In the future these items may |
21991 | 1176 work for multibyte characters. For now, to get all "alpha" |
9041
34c45ee4210d
commit https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Christian Brabandt <cb@256bit.org>
parents:
8951
diff
changeset
|
1177 characters you can use: [[:lower:][:upper:]]. |
11267
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1178 |
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1179 The "Func" column shows what library function is used. The |
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1180 implementation depends on the system. Otherwise: |
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1181 (1) Uses islower() for ASCII and Vim builtin rules for other |
15878 | 1182 characters. |
11267
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1183 (2) Uses Vim builtin rules |
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11160
diff
changeset
|
1184 (3) As with (1) but using isupper() |
168 | 1185 */[[=* *[==]* |
1186 - An equivalence class. This means that characters are matched that | |
2974 | 1187 have almost the same meaning, e.g., when ignoring accents. This |
1188 only works for Unicode, latin1 and latin9. The form is: | |
856 | 1189 [=a=] |
168 | 1190 */[[.* *[..]* |
1191 - A collation element. This currently simply accepts a single | |
1192 character in the form: | |
856 | 1193 [.a.] |
7 | 1194 */\]* |
1195 - To include a literal ']', '^', '-' or '\' in the collection, put a | |
1196 backslash before it: "[xyz\]]", "[\^xyz]", "[xy\-z]" and "[xyz\\]". | |
1197 (Note: POSIX does not support the use of a backslash this way). For | |
1198 ']' you can also make it the first character (following a possible | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
1199 "^"): "[]xyz]" or "[^]xyz]". |
7 | 1200 For '-' you can also make it the first or last character: "[-xyz]", |
1201 "[^-xyz]" or "[xyz-]". For '\' you can also let it be followed by | |
2290
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1202 any character that's not in "^]-\bdertnoUux". "[\xyz]" matches '\', |
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1203 'x', 'y' and 'z'. It's better to use "\\" though, future expansions |
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1204 may use other characters after '\'. |
4339 | 1205 - Omitting the trailing ] is not considered an error. "[]" works like |
1206 "[]]", it matches the ']' character. | |
7 | 1207 - The following translations are accepted when the 'l' flag is not |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
1208 included in 'cpoptions': |
7 | 1209 \e <Esc> |
1210 \t <Tab> | |
1211 \r <CR> (NOT end-of-line!) | |
1212 \b <BS> | |
1125 | 1213 \n line break, see above |/[\n]| |
24 | 1214 \d123 decimal number of character |
23573 | 1215 \o40 octal number of character up to 0o377 |
24 | 1216 \x20 hexadecimal number of character up to 0xff |
1217 \u20AC hex. number of multibyte character up to 0xffff | |
1218 \U1234 hex. number of multibyte character up to 0xffffffff | |
7 | 1219 NOTE: The other backslash codes mentioned above do not work inside |
1220 []! | |
1221 - Matching with a collection can be slow, because each character in | |
1222 the text has to be compared with each character in the collection. | |
1223 Use one of the other atoms above when possible. Example: "\d" is | |
13482
9eebe457eb3c
Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents:
13231
diff
changeset
|
1224 much faster than "[0-9]" and matches the same characters. However, |
9eebe457eb3c
Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents:
13231
diff
changeset
|
1225 the new |NFA| regexp engine deals with this better than the old one. |
7 | 1226 |
1227 */\%[]* *E69* *E70* *E369* | |
24 | 1228 \%[] A sequence of optionally matched atoms. This always matches. |
7 | 1229 It matches as much of the list of atoms it contains as possible. Thus |
1230 it stops at the first atom that doesn't match. For example: > | |
1231 /r\%[ead] | |
1232 < matches "r", "re", "rea" or "read". The longest that matches is used. | |
1233 To match the Ex command "function", where "fu" is required and | |
1234 "nction" is optional, this would work: > | |
1235 /\<fu\%[nction]\> | |
1236 < The end-of-word atom "\>" is used to avoid matching "fu" in "full". | |
1237 It gets more complicated when the atoms are not ordinary characters. | |
1238 You don't often have to use it, but it is possible. Example: > | |
1239 /\<r\%[[eo]ad]\> | |
1240 < Matches the words "r", "re", "ro", "rea", "roa", "read" and "road". | |
1125 | 1241 There can be no \(\), \%(\) or \z(\) items inside the [] and \%[] does |
1242 not nest. | |
1620 | 1243 To include a "[" use "[[]" and for "]" use []]", e.g.,: > |
1244 /index\%[[[]0[]]] | |
1245 < matches "index" "index[", "index[0" and "index[0]". | |
2570
71b56b4e7785
Make the references to features in the help more consistent. (Sylvain Hitier)
Bram Moolenaar <bram@vim.org>
parents:
2561
diff
changeset
|
1246 {not available when compiled without the |+syntax| feature} |
7 | 1247 |
140 | 1248 */\%d* */\%x* */\%o* */\%u* */\%U* *E678* |
24 | 1249 |
1250 \%d123 Matches the character specified with a decimal number. Must be | |
1251 followed by a non-digit. | |
24911 | 1252 \%o40 Matches the character specified with an octal number up to 0o377. |
23573 | 1253 Numbers below 0o40 must be followed by a non-octal digit or a |
1254 non-digit. | |
24 | 1255 \%x2a Matches the character specified with up to two hexadecimal characters. |
1256 \%u20AC Matches the character specified with up to four hexadecimal | |
1257 characters. | |
1258 \%U1234abcd Matches the character specified with up to eight hexadecimal | |
15932 | 1259 characters, up to 0x7fffffff |
7 | 1260 |
1261 ============================================================================== | |
1262 7. Ignoring case in a pattern */ignorecase* | |
1263 | |
1264 If the 'ignorecase' option is on, the case of normal letters is ignored. | |
1265 'smartcase' can be set to ignore case when the pattern contains lowercase | |
1266 letters only. | |
1267 */\c* */\C* | |
1268 When "\c" appears anywhere in the pattern, the whole pattern is handled like | |
1269 'ignorecase' is on. The actual value of 'ignorecase' and 'smartcase' is | |
1270 ignored. "\C" does the opposite: Force matching case for the whole pattern. | |
1271 {only Vim supports \c and \C} | |
1272 Note that 'ignorecase', "\c" and "\C" are not used for the character classes. | |
1273 | |
1274 Examples: | |
1275 pattern 'ignorecase' 'smartcase' matches ~ | |
1276 foo off - foo | |
1277 foo on - foo Foo FOO | |
1278 Foo on off foo Foo FOO | |
1279 Foo on on Foo | |
1280 \cfoo - - foo Foo FOO | |
1281 foo\C - - foo | |
1282 | |
1283 Technical detail: *NL-used-for-Nul* | |
1284 <Nul> characters in the file are stored as <NL> in memory. In the display | |
1285 they are shown as "^@". The translation is done when reading and writing | |
1286 files. To match a <Nul> with a search pattern you can just enter CTRL-@ or | |
1287 "CTRL-V 000". This is probably just what you expect. Internally the | |
1288 character is replaced with a <NL> in the search pattern. What is unusual is | |
1289 that typing CTRL-V CTRL-J also inserts a <NL>, thus also searches for a <Nul> | |
16553
0e473e9e70c2
patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents:
16533
diff
changeset
|
1290 in the file. |
7 | 1291 |
1292 *CR-used-for-NL* | |
1293 When 'fileformat' is "mac", <NL> characters in the file are stored as <CR> | |
1698 | 1294 characters internally. In the text they are shown as "^J". Otherwise this |
7 | 1295 works similar to the usage of <NL> for a <Nul>. |
1296 | |
1297 When working with expression evaluation, a <NL> character in the pattern | |
1298 matches a <NL> in the string. The use of "\n" (backslash n) to match a <NL> | |
1299 doesn't work there, it only works to match text in the buffer. | |
1300 | |
21991 | 1301 *pattern-multi-byte* *pattern-multibyte* |
1302 Patterns will also work with multibyte characters, mostly as you would | |
7 | 1303 expect. But invalid bytes may cause trouble, a pattern with an invalid byte |
1304 will probably never match. | |
1305 | |
1306 ============================================================================== | |
714 | 1307 8. Composing characters *patterns-composing* |
1308 | |
1309 */\Z* | |
5901 | 1310 When "\Z" appears anywhere in the pattern, all composing characters are |
1311 ignored. Thus only the base characters need to match, the composing | |
1312 characters may be different and the number of composing characters may differ. | |
1313 Only relevant when 'encoding' is "utf-8". | |
4681
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
1314 Exception: If the pattern starts with one or more composing characters, these |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
1315 must match. |
5901 | 1316 */\%C* |
1317 Use "\%C" to skip any composing characters. For example, the pattern "a" does | |
1318 not match in "càt" (where the a has the composing character 0x0300), but | |
1319 "a\%C" does. Note that this does not match "cát" (where the á is character | |
1320 0xe1, it does not have a compositing character). It does match "cat" (where | |
1321 the a is just an a). | |
714 | 1322 |
21250 | 1323 When a composing character appears at the start of the pattern or after an |
714 | 1324 item that doesn't include the composing character, a match is found at any |
1325 character that includes this composing character. | |
1326 | |
1327 When using a dot and a composing character, this works the same as the | |
1328 composing character by itself, except that it doesn't matter what comes before | |
1329 this. | |
1330 | |
4681
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
1331 The order of composing characters does not matter. Also, the text may have |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
1332 more composing characters than the pattern, it still matches. But all |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
1333 composing characters in the pattern must be found in the text. |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
1334 |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
1335 Suppose B is a base character and x and y are composing characters: |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
1336 pattern text match ~ |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
1337 Bxy Bxy yes (perfect match) |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
1338 Bxy Byx yes (order ignored) |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
1339 Bxy By no (x missing) |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
1340 Bxy Bx no (y missing) |
4780 | 1341 Bx Bx yes (perfect match) |
4681
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
1342 Bx By no (x missing) |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
1343 Bx Bxy yes (extra y ignored) |
2eb30f341e8d
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
1344 Bx Byx yes (extra y ignored) |
714 | 1345 |
1346 ============================================================================== | |
1347 9. Compare with Perl patterns *perl-patterns* | |
7 | 1348 |
1349 Vim's regexes are most similar to Perl's, in terms of what you can do. The | |
1350 difference between them is mostly just notation; here's a summary of where | |
1351 they differ: | |
1352 | |
1353 Capability in Vimspeak in Perlspeak ~ | |
1354 ---------------------------------------------------------------- | |
1355 force case insensitivity \c (?i) | |
1356 force case sensitivity \C (?-i) | |
714 | 1357 backref-less grouping \%(atom\) (?:atom) |
7 | 1358 conservative quantifiers \{-n,m} *?, +?, ??, {}? |
1359 0-width match atom\@= (?=atom) | |
1360 0-width non-match atom\@! (?!atom) | |
1361 0-width preceding match atom\@<= (?<=atom) | |
1362 0-width preceding non-match atom\@<! (?<!atom) | |
1363 match without retry atom\@> (?>atom) | |
1364 | |
1365 Vim and Perl handle newline characters inside a string a bit differently: | |
1366 | |
1367 In Perl, ^ and $ only match at the very beginning and end of the text, | |
1368 by default, but you can set the 'm' flag, which lets them match at | |
1369 embedded newlines as well. You can also set the 's' flag, which causes | |
1370 a . to match newlines as well. (Both these flags can be changed inside | |
1371 a pattern using the same syntax used for the i flag above, BTW.) | |
1372 | |
1373 On the other hand, Vim's ^ and $ always match at embedded newlines, and | |
1374 you get two separate atoms, \%^ and \%$, which only match at the very | |
1375 start and end of the text, respectively. Vim solves the second problem | |
1376 by giving you the \_ "modifier": put it in front of a . or a character | |
1377 class, and they will match newlines as well. | |
1378 | |
1379 Finally, these constructs are unique to Perl: | |
1380 - execution of arbitrary code in the regex: (?{perl code}) | |
1381 - conditional expressions: (?(condition)true-expr|false-expr) | |
1382 | |
1383 ...and these are unique to Vim: | |
1384 - changing the magic-ness of a pattern: \v \V \m \M | |
1385 (very useful for avoiding backslashitis) | |
1386 - sequence of optionally matching atoms: \%[atoms] | |
1387 - \& (which is to \| what "and" is to "or"; it forces several branches | |
1388 to match at one spot) | |
1389 - matching lines/columns by number: \%5l \%5c \%5v | |
714 | 1390 - setting the start and end of the match: \zs \ze |
7 | 1391 |
1392 ============================================================================== | |
714 | 1393 10. Highlighting matches *match-highlight* |
7 | 1394 |
1395 *:mat* *:match* | |
1396 :mat[ch] {group} /{pattern}/ | |
1397 Define a pattern to highlight in the current window. It will | |
1398 be highlighted with {group}. Example: > | |
1399 :highlight MyGroup ctermbg=green guibg=green | |
1400 :match MyGroup /TODO/ | |
1401 < Instead of // any character can be used to mark the start and | |
1402 end of the {pattern}. Watch out for using special characters, | |
1403 such as '"' and '|'. | |
699 | 1404 |
7 | 1405 {group} must exist at the moment this command is executed. |
699 | 1406 |
1407 The {group} highlighting still applies when a character is | |
1326 | 1408 to be highlighted for 'hlsearch', as the highlighting for |
1409 matches is given higher priority than that of 'hlsearch'. | |
1410 Syntax highlighting (see 'syntax') is also overruled by | |
1411 matches. | |
699 | 1412 |
7 | 1413 Note that highlighting the last used search pattern with |
1414 'hlsearch' is used in all windows, while the pattern defined | |
1415 with ":match" only exists in the current window. It is kept | |
1416 when switching to another buffer. | |
699 | 1417 |
1418 'ignorecase' does not apply, use |/\c| in the pattern to | |
1419 ignore case. Otherwise case is not ignored. | |
1420 | |
1620 | 1421 'redrawtime' defines the maximum time searched for pattern |
1422 matches. | |
1423 | |
1125 | 1424 When matching end-of-line and Vim redraws only part of the |
1425 display you may get unexpected results. That is because Vim | |
1426 looks for a match in the line where redrawing starts. | |
1427 | |
1620 | 1428 Also see |matcharg()| and |getmatches()|. The former returns |
1326 | 1429 the highlight group and pattern of a previous |:match| |
1430 command. The latter returns a list with highlight groups and | |
1431 patterns defined by both |matchadd()| and |:match|. | |
1432 | |
1433 Highlighting matches using |:match| are limited to three | |
5968 | 1434 matches (aside from |:match|, |:2match| and |:3match| are |
1326 | 1435 available). |matchadd()| does not have this limitation and in |
1436 addition makes it possible to prioritize matches. | |
819 | 1437 |
7 | 1438 Another example, which highlights all characters in virtual |
1439 column 72 and more: > | |
1440 :highlight rightMargin term=bold ctermfg=blue guifg=blue | |
1441 :match rightMargin /.\%>72v/ | |
1442 < To highlight all character that are in virtual column 7: > | |
1443 :highlight col8 ctermbg=grey guibg=grey | |
1444 :match col8 /\%<8v.\%>7v/ | |
1445 < Note the use of two items to also match a character that | |
1446 occupies more than one virtual column, such as a TAB. | |
1447 | |
1448 :mat[ch] | |
1449 :mat[ch] none | |
1450 Clear a previously defined match pattern. | |
1451 | |
699 | 1452 |
819 | 1453 :2mat[ch] {group} /{pattern}/ *:2match* |
699 | 1454 :2mat[ch] |
1455 :2mat[ch] none | |
819 | 1456 :3mat[ch] {group} /{pattern}/ *:3match* |
699 | 1457 :3mat[ch] |
1458 :3mat[ch] none | |
1459 Just like |:match| above, but set a separate match. Thus | |
1460 there can be three matches active at the same time. The match | |
1461 with the lowest number has priority if several match at the | |
1462 same position. | |
1463 The ":3match" command is used by the |matchparen| plugin. You | |
1464 are suggested to use ":match" for manual matching and | |
1465 ":2match" for another plugin. | |
1466 | |
24636 | 1467 ============================================================================== |
28010 | 1468 11. Fuzzy matching *fuzzy-matching* |
24636 | 1469 |
1470 Fuzzy matching refers to matching strings using a non-exact search string. | |
1471 Fuzzy matching will match a string, if all the characters in the search string | |
1472 are present anywhere in the string in the same order. Case is ignored. In a | |
1473 matched string, other characters can be present between two consecutive | |
1474 characters in the search string. If the search string has multiple words, then | |
1475 each word is matched separately. So the words in the search string can be | |
1476 present in any order in a string. | |
1477 | |
1478 Fuzzy matching assigns a score for each matched string based on the following | |
1479 criteria: | |
1480 - The number of sequentially matching characters. | |
1481 - The number of characters (distance) between two consecutive matching | |
1482 characters. | |
1483 - Matches at the beginning of a word | |
25402 | 1484 - Matches at a camel case character (e.g. Case in CamelCase) |
1485 - Matches after a path separator or a hyphen. | |
24636 | 1486 - The number of unmatched characters in a string. |
1487 The matching string with the highest score is returned first. | |
1488 | |
1489 For example, when you search for the "get pat" string using fuzzy matching, it | |
1490 will match the strings "GetPattern", "PatternGet", "getPattern", "patGetter", | |
1491 "getSomePattern", "MatchpatternGet" etc. | |
1492 | |
1493 The functions |matchfuzzy()| and |matchfuzzypos()| can be used to fuzzy search | |
1494 a string in a List of strings. The matchfuzzy() function returns a List of | |
1495 matching strings. The matchfuzzypos() functions returns the List of matches, | |
1496 the matching positions and the fuzzy match scores. | |
1497 | |
1498 The "f" flag of `:vimgrep` enables fuzzy matching. | |
1499 | |
1500 | |
14421 | 1501 vim:tw=78:ts=8:noet:ft=help:norl: |