blob: 300262ddbd70383aa0491c88c902e3b46970126b [file] [log] [blame]
Bram Moolenaar5837f1f2015-03-21 18:06:14 +01001*pattern.txt* For Vim version 7.4. Last change: 2015 Mar 16
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7Patterns and search commands *pattern-searches*
8
9The very basics can be found in section |03.9| of the user manual. A few more
10explanations are in chapter 27 |usr_27.txt|.
11
121. Search commands |search-commands|
132. The definition of a pattern |search-pattern|
143. Magic |/magic|
154. Overview of pattern items |pattern-overview|
165. Multi items |pattern-multi-items|
176. Ordinary atoms |pattern-atoms|
187. Ignoring case in a pattern |/ignorecase|
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000198. Composing characters |patterns-composing|
209. Compare with Perl patterns |perl-patterns|
2110. Highlighting matches |match-highlight|
Bram Moolenaar071d4272004-06-13 20:20:40 +000022
23==============================================================================
Bram Moolenaar15146672011-10-20 22:22:38 +0200241. Search commands *search-commands*
Bram Moolenaar071d4272004-06-13 20:20:40 +000025
26 */*
27/{pattern}[/]<CR> Search forward for the [count]'th occurrence of
28 {pattern} |exclusive|.
29
30/{pattern}/{offset}<CR> Search forward for the [count]'th occurrence of
31 {pattern} and go |{offset}| lines up or down.
32 |linewise|.
33
34 */<CR>*
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +010035/<CR> Search forward for the [count]'th occurrence of the
36 latest used pattern |last-pattern| with latest used
37 |{offset}|.
Bram Moolenaar071d4272004-06-13 20:20:40 +000038
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +010039//{offset}<CR> Search forward for the [count]'th occurrence of the
40 latest used pattern |last-pattern| with new
41 |{offset}|. If {offset} is empty no offset is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +000042
43 *?*
44?{pattern}[?]<CR> Search backward for the [count]'th previous
45 occurrence of {pattern} |exclusive|.
46
47?{pattern}?{offset}<CR> Search backward for the [count]'th previous
48 occurrence of {pattern} and go |{offset}| lines up or
49 down |linewise|.
50
51 *?<CR>*
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +010052?<CR> Search backward for the [count]'th occurrence of the
53 latest used pattern |last-pattern| with latest used
54 |{offset}|.
Bram Moolenaar071d4272004-06-13 20:20:40 +000055
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +010056??{offset}<CR> Search backward for the [count]'th occurrence of the
57 latest used pattern |last-pattern| with new
58 |{offset}|. If {offset} is empty no offset is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +000059
60 *n*
61n Repeat the latest "/" or "?" [count] times.
Bram Moolenaar2b8388b2015-02-28 13:11:45 +010062 If the cursor doesn't move the search is repeated with
63 count + 1.
Bram Moolenaar071d4272004-06-13 20:20:40 +000064 |last-pattern| {Vi: no count}
65
66 *N*
67N Repeat the latest "/" or "?" [count] times in
68 opposite direction. |last-pattern| {Vi: no count}
69
70 *star* *E348* *E349*
71* Search forward for the [count]'th occurrence of the
72 word nearest to the cursor. The word used for the
73 search is the first of:
74 1. the keyword under the cursor |'iskeyword'|
75 2. the first keyword after the cursor, in the
76 current line
77 3. the non-blank word under the cursor
78 4. the first non-blank word after the cursor,
79 in the current line
80 Only whole keywords are searched for, like with the
81 command "/\<keyword\>". |exclusive| {not in Vi}
82 'ignorecase' is used, 'smartcase' is not.
83
84 *#*
85# Same as "*", but search backward. The pound sign
86 (character 163) also works. If the "#" key works as
87 backspace, try using "stty erase <BS>" before starting
88 Vim (<BS> is CTRL-H or a real backspace). {not in Vi}
89
90 *gstar*
91g* Like "*", but don't put "\<" and "\>" around the word.
92 This makes the search also find matches that are not a
93 whole word. {not in Vi}
94
95 *g#*
96g# Like "#", but don't put "\<" and "\>" around the word.
97 This makes the search also find matches that are not a
98 whole word. {not in Vi}
99
100 *gd*
101gd Goto local Declaration. When the cursor is on a local
102 variable, this command will jump to its declaration.
103 First Vim searches for the start of the current
104 function, just like "[[". If it is not found the
105 search stops in line 1. If it is found, Vim goes back
106 until a blank line is found. From this position Vim
107 searches for the keyword under the cursor, like with
108 "*", but lines that look like a comment are ignored
109 (see 'comments' option).
110 Note that this is not guaranteed to work, Vim does not
111 really check the syntax, it only searches for a match
112 with the keyword. If included files also need to be
113 searched use the commands listed in |include-search|.
114 After this command |n| searches forward for the next
115 match (not backward).
116 {not in Vi}
117
118 *gD*
119gD 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
123 always starts in line 1. {not in Vi}
124
Bram Moolenaarf75a9632005-09-13 21:20:47 +0000125 *1gd*
1261gd Like "gd", but ignore matches inside a {} block that
127 ends before the cursor position. {not in Vi}
128
129 *1gD*
1301gD Like "gD", but ignore matches inside a {} block that
131 ends before the cursor position. {not in Vi}
132
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133 *CTRL-C*
134CTRL-C Interrupt current (search) command. Use CTRL-Break on
135 MS-DOS |dos-CTRL-Break|.
136 In Normal mode, any pending command is aborted.
137
138 *:noh* *:nohlsearch*
139:noh[lsearch] Stop the highlighting for the 'hlsearch' option. It
140 is automatically turned back on when using a search
141 command, or setting the 'hlsearch' option.
142 This command doesn't work in an autocommand, because
143 the highlighting state is saved and restored when
144 executing autocommands |autocmd-searchpat|.
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000145 Same thing for when invoking a user function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146
147While typing the search pattern the current match will be shown if the
148'incsearch' option is on. Remember that you still have to finish the search
149command with <CR> to actually position the cursor at the displayed match. Or
150use <Esc> to abandon the search.
151
152All matches for the last used search pattern will be highlighted if you set
153the 'hlsearch' option. This can be suspended with the |:nohlsearch| command.
154
Bram Moolenaar15146672011-10-20 22:22:38 +0200155When no match is found you get the error: *E486* Pattern not found
156Note that for the |:global| command this behaves like a normal message, for Vi
157compatibility. For the |:s| command the "e" flag can be used to avoid the
158error message |:s_flags|.
159
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160 *search-offset* *{offset}*
161These commands search for the specified pattern. With "/" and "?" an
162additional offset may be given. There are two types of offsets: line offsets
163and character offsets. {the character offsets are not in Vi}
164
165The offset gives the cursor position relative to the found match:
166 [num] [num] lines downwards, in column 1
167 +[num] [num] lines downwards, in column 1
168 -[num] [num] lines upwards, in column 1
169 e[+num] [num] characters to the right of the end of the match
170 e[-num] [num] characters to the left of the end of the match
171 s[+num] [num] characters to the right of the start of the match
172 s[-num] [num] characters to the left of the start of the match
173 b[+num] [num] identical to s[+num] above (mnemonic: begin)
174 b[-num] [num] identical to s[-num] above (mnemonic: begin)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000175 ;{pattern} perform another search, see |//;|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176
177If a '-' or '+' is given but [num] is omitted, a count of one will be used.
178When including an offset with 'e', the search becomes inclusive (the
179character the cursor lands on is included in operations).
180
181Examples:
182
183pattern cursor position ~
184/test/+1 one line below "test", in column 1
185/test/e on the last t of "test"
186/test/s+2 on the 's' of "test"
187/test/b-3 three characters before "test"
188
189If one of these commands is used after an operator, the characters between
190the cursor position before and after the search is affected. However, if a
191line offset is given, the whole lines between the two cursor positions are
192affected.
193
194An example of how to search for matches with a pattern and change the match
195with another word: >
196 /foo<CR> find "foo"
Bram Moolenaar92dff182014-02-11 19:15:50 +0100197 c//e<CR> change until end of match
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198 bar<Esc> type replacement
199 //<CR> go to start of next match
Bram Moolenaar92dff182014-02-11 19:15:50 +0100200 c//e<CR> change until end of match
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201 beep<Esc> type another replacement
202 etc.
203<
204 *//;* *E386*
205A very special offset is ';' followed by another search command. For example: >
206
207 /test 1/;/test
208 /test.*/+1;?ing?
209
210The first one first finds the next occurrence of "test 1", and then the first
211occurrence of "test" after that.
212
213This is like executing two search commands after each other, except that:
214- It can be used as a single motion command after an operator.
215- The direction for a following "n" or "N" command comes from the first
216 search command.
217- When an error occurs the cursor is not moved at all.
218
219 *last-pattern*
220The last used pattern and offset are remembered. They can be used to repeat
221the search, possibly in another direction or with another count. Note that
222two patterns are remembered: One for 'normal' search commands and one for the
223substitute command ":s". Each time an empty pattern is given, the previously
Bram Moolenaar662db672011-03-22 14:05:35 +0100224used pattern is used. However, if there is no previous search command, a
225previous substitute pattern is used, if possible.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226
227The 'magic' option sticks with the last used pattern. If you change 'magic',
228this will not change how the last used pattern will be interpreted.
229The 'ignorecase' option does not do this. When 'ignorecase' is changed, it
230will result in the pattern to match other text.
231
232All matches for the last used search pattern will be highlighted if you set
233the 'hlsearch' option.
234
235To clear the last used search pattern: >
236 :let @/ = ""
237This will not set the pattern to an empty string, because that would match
238everywhere. The pattern is really cleared, like when starting Vim.
239
Bram Moolenaar8f999f12005-01-25 22:12:55 +0000240The search usually skips matches that don't move the cursor. Whether the next
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241match is found at the next character or after the skipped match depends on the
242'c' flag in 'cpoptions'. See |cpo-c|.
243 with 'c' flag: "/..." advances 1 to 3 characters
244 without 'c' flag: "/..." advances 1 character
245The unpredictability with the 'c' flag is caused by starting the search in the
246first column, skipping matches until one is found past the cursor position.
247
Bram Moolenaar8f999f12005-01-25 22:12:55 +0000248When searching backwards, searching starts at the start of the line, using the
249'c' flag in 'cpoptions' as described above. Then the last match before the
250cursor position is used.
251
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252In Vi the ":tag" command sets the last search pattern when the tag is searched
253for. In Vim this is not done, the previous search pattern is still remembered,
254unless the 't' flag is present in 'cpoptions'. The search pattern is always
255put in the search history.
256
257If the 'wrapscan' option is on (which is the default), searches wrap around
258the end of the buffer. If 'wrapscan' is not set, the backward search stops
259at the beginning and the forward search stops at the end of the buffer. If
260'wrapscan' is set and the pattern was not found the error message "pattern
261not found" is given, and the cursor will not be moved. If 'wrapscan' is not
262set the message becomes "search hit BOTTOM without match" when searching
263forward, or "search hit TOP without match" when searching backward. If
264wrapscan is set and the search wraps around the end of the file the message
265"search hit TOP, continuing at BOTTOM" or "search hit BOTTOM, continuing at
266TOP" is given when searching backwards or forwards respectively. This can be
267switched off by setting the 's' flag in the 'shortmess' option. The highlight
268method 'w' is used for this message (default: standout).
269
270 *search-range*
Bram Moolenaar4770d092006-01-12 23:22:24 +0000271You can limit the search command "/" to a certain range of lines by including
272\%>l items. For example, to match the word "limit" below line 199 and above
273line 300: >
274 /\%>199l\%<300llimit
275Also see |/\%>l|.
276
277Another way is to use the ":substitute" command with the 'c' flag. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278 :.,300s/Pattern//gc
279This command will search from the cursor position until line 300 for
280"Pattern". At the match, you will be asked to type a character. Type 'q' to
281stop at this match, type 'n' to find the next match.
282
283The "*", "#", "g*" and "g#" commands look for a word near the cursor in this
284order, the first one that is found is used:
285- The keyword currently under the cursor.
286- The first keyword to the right of the cursor, in the same line.
287- The WORD currently under the cursor.
288- The first WORD to the right of the cursor, in the same line.
289The keyword may only contain letters and characters in 'iskeyword'.
290The WORD may contain any non-blanks (<Tab>s and/or <Space>s).
291Note that if you type with ten fingers, the characters are easy to remember:
292the "#" is under your left hand middle finger (search to the left and up) and
293the "*" is under your right hand middle finger (search to the right and down).
294(this depends on your keyboard layout though).
295
296==============================================================================
2972. The definition of a pattern *search-pattern* *pattern* *[pattern]*
298 *regular-expression* *regexp* *Pattern*
Bram Moolenaarf1f8bc52005-03-07 23:20:08 +0000299 *E76* *E383* *E476*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300
301For starters, read chapter 27 of the user manual |usr_27.txt|.
302
303 */bar* */\bar* */pattern*
3041. A pattern is one or more branches, separated by "\|". It matches anything
305 that matches one of the branches. Example: "foo\|beep" matches "foo" and
306 matches "beep". If more than one branch matches, the first one is used.
307
308 pattern ::= branch
309 or branch \| branch
310 or branch \| branch \| branch
311 etc.
312
313 */branch* */\&*
3142. A branch is one or more concats, separated by "\&". It matches the last
315 concat, but only if all the preceding concats also match at the same
316 position. Examples:
317 "foobeep\&..." matches "foo" in "foobeep".
318 ".*Peter\&.*Bob" matches in a line containing both "Peter" and "Bob"
319
320 branch ::= concat
321 or concat \& concat
322 or concat \& concat \& concat
323 etc.
324
325 */concat*
3263. A concat is one or more pieces, concatenated. It matches a match for the
327 first piece, followed by a match for the second piece, etc. Example:
328 "f[0-9]b", first matches "f", then a digit and then "b".
329
330 concat ::= piece
331 or piece piece
332 or piece piece piece
333 etc.
334
335 */piece*
3364. A piece is an atom, possibly followed by a multi, an indication of how many
337 times the atom can be matched. Example: "a*" matches any sequence of "a"
338 characters: "", "a", "aa", etc. See |/multi|.
339
340 piece ::= atom
341 or atom multi
342
343 */atom*
3445. An atom can be one of a long list of items. Many atoms match one character
345 in the text. It is often an ordinary character or a character class.
346 Braces can be used to make a pattern into an atom. The "\z(\)" construct
347 is only for syntax highlighting.
348
349 atom ::= ordinary-atom |/ordinary-atom|
350 or \( pattern \) |/\(|
351 or \%( pattern \) |/\%(|
352 or \z( pattern \) |/\z(|
353
354
Bram Moolenaar913df812013-07-06 15:44:11 +0200355 */\%#=* *two-engines* *NFA*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200356Vim includes two regexp engines:
3571. An old, backtracking engine that supports everything.
3582. A new, NFA engine that works much faster on some patterns, but does not
359 support everything.
360
361Vim will automatically select the right engine for you. However, if you run
362into a problem or want to specifically select one engine or the other, you can
363prepend one of the following to the pattern:
364
365 \%#=0 Force automatic selection. Only has an effect when
366 'regexpengine' has been set to a non-zero value.
367 \%#=1 Force using the old engine.
368 \%#=2 Force using the NFA engine.
369
370You can also use the 'regexpengine' option to change the default.
371
372 *E864* *E868* *E874* *E875* *E876* *E877* *E878*
373If selecting the NFA engine and it runs into something that is not implemented
374the pattern will not match. This is only useful when debugging Vim.
375
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376==============================================================================
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003773. Magic */magic*
378
379Some characters in the pattern are taken literally. They match with the same
380character in the text. When preceded with a backslash however, these
381characters get a special meaning.
382
383Other characters have a special meaning without a backslash. They need to be
384preceded with a backslash to match literally.
385
386If a character is taken literally or not depends on the 'magic' option and the
387items mentioned next.
388 */\m* */\M*
389Use of "\m" makes the pattern after it be interpreted as if 'magic' is set,
390ignoring the actual value of the 'magic' option.
391Use of "\M" makes the pattern after it be interpreted as if 'nomagic' is used.
392 */\v* */\V*
393Use of "\v" means that in the pattern after it all ASCII characters except
394'0'-'9', 'a'-'z', 'A'-'Z' and '_' have a special meaning. "very magic"
395
396Use of "\V" means that in the pattern after it only the backslash has a
397special meaning. "very nomagic"
398
399Examples:
400after: \v \m \M \V matches ~
401 'magic' 'nomagic'
402 $ $ $ \$ matches end-of-line
403 . . \. \. matches any character
404 * * \* \* any number of the previous atom
405 () \(\) \(\) \(\) grouping into an atom
406 | \| \| \| separating alternatives
407 \a \a \a \a alphabetic character
408 \\ \\ \\ \\ literal backslash
409 \. \. . . literal dot
410 \{ { { { literal '{'
411 a a a a literal 'a'
412
413{only Vim supports \m, \M, \v and \V}
414
415It is recommended to always keep the 'magic' option at the default setting,
416which is 'magic'. This avoids portability problems. To make a pattern immune
417to the 'magic' option being set or not, put "\m" or "\M" at the start of the
418pattern.
419
420==============================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00004214. Overview of pattern items *pattern-overview*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200422 *E865* *E866* *E867* *E869*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423
424Overview of multi items. */multi* *E61* *E62*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200425More explanation and examples below, follow the links. *E64* *E871*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426
427 multi ~
428 'magic' 'nomagic' matches of the preceding atom ~
429|/star| * \* 0 or more as many as possible
430|/\+| \+ \+ 1 or more as many as possible (*)
431|/\=| \= \= 0 or 1 as many as possible (*)
432|/\?| \? \? 0 or 1 as many as possible (*)
433
434|/\{| \{n,m} \{n,m} n to m as many as possible (*)
435 \{n} \{n} n exactly (*)
436 \{n,} \{n,} at least n as many as possible (*)
437 \{,m} \{,m} 0 to m as many as possible (*)
438 \{} \{} 0 or more as many as possible (same as *) (*)
439
440|/\{-| \{-n,m} \{-n,m} n to m as few as possible (*)
441 \{-n} \{-n} n exactly (*)
442 \{-n,} \{-n,} at least n as few as possible (*)
443 \{-,m} \{-,m} 0 to m as few as possible (*)
444 \{-} \{-} 0 or more as few as possible (*)
445
446 *E59*
447|/\@>| \@> \@> 1, like matching a whole pattern (*)
448|/\@=| \@= \@= nothing, requires a match |/zero-width| (*)
449|/\@!| \@! \@! nothing, requires NO match |/zero-width| (*)
450|/\@<=| \@<= \@<= nothing, requires a match behind |/zero-width| (*)
451|/\@<!| \@<! \@<! nothing, requires NO match behind |/zero-width| (*)
452
453(*) {not in Vi}
454
455
456Overview of ordinary atoms. */ordinary-atom*
457More explanation and examples below, follow the links.
458
459 ordinary atom ~
460 magic nomagic matches ~
461|/^| ^ ^ start-of-line (at start of pattern) |/zero-width|
462|/\^| \^ \^ literal '^'
463|/\_^| \_^ \_^ start-of-line (used anywhere) |/zero-width|
464|/$| $ $ end-of-line (at end of pattern) |/zero-width|
465|/\$| \$ \$ literal '$'
466|/\_$| \_$ \_$ end-of-line (used anywhere) |/zero-width|
467|/.| . \. any single character (not an end-of-line)
468|/\_.| \_. \_. any single character or end-of-line
469|/\<| \< \< beginning of a word |/zero-width|
470|/\>| \> \> end of a word |/zero-width|
471|/\zs| \zs \zs anything, sets start of match
472|/\ze| \ze \ze anything, sets end of match
473|/\%^| \%^ \%^ beginning of file |/zero-width| *E71*
474|/\%$| \%$ \%$ end of file |/zero-width|
Bram Moolenaar33aec762006-01-22 23:30:12 +0000475|/\%V| \%V \%V inside Visual area |/zero-width|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476|/\%#| \%# \%# cursor position |/zero-width|
Bram Moolenaar33aec762006-01-22 23:30:12 +0000477|/\%'m| \%'m \%'m mark m position |/zero-width|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478|/\%l| \%23l \%23l in line 23 |/zero-width|
479|/\%c| \%23c \%23c in column 23 |/zero-width|
480|/\%v| \%23v \%23v in virtual column 23 |/zero-width|
481
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000482Character classes {not in Vi}: */character-classes*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483|/\i| \i \i identifier character (see 'isident' option)
484|/\I| \I \I like "\i", but excluding digits
485|/\k| \k \k keyword character (see 'iskeyword' option)
486|/\K| \K \K like "\k", but excluding digits
487|/\f| \f \f file name character (see 'isfname' option)
488|/\F| \F \F like "\f", but excluding digits
489|/\p| \p \p printable character (see 'isprint' option)
490|/\P| \P \P like "\p", but excluding digits
491|/\s| \s \s whitespace character: <Space> and <Tab>
492|/\S| \S \S non-whitespace character; opposite of \s
493|/\d| \d \d digit: [0-9]
494|/\D| \D \D non-digit: [^0-9]
495|/\x| \x \x hex digit: [0-9A-Fa-f]
496|/\X| \X \X non-hex digit: [^0-9A-Fa-f]
497|/\o| \o \o octal digit: [0-7]
498|/\O| \O \O non-octal digit: [^0-7]
499|/\w| \w \w word character: [0-9A-Za-z_]
500|/\W| \W \W non-word character: [^0-9A-Za-z_]
501|/\h| \h \h head of word character: [A-Za-z_]
502|/\H| \H \H non-head of word character: [^A-Za-z_]
503|/\a| \a \a alphabetic character: [A-Za-z]
504|/\A| \A \A non-alphabetic character: [^A-Za-z]
505|/\l| \l \l lowercase character: [a-z]
506|/\L| \L \L non-lowercase character: [^a-z]
507|/\u| \u \u uppercase character: [A-Z]
508|/\U| \U \U non-uppercase character [^A-Z]
509|/\_| \_x \_x where x is any of the characters above: character
510 class with end-of-line included
511(end of character classes)
512
513|/\e| \e \e <Esc>
514|/\t| \t \t <Tab>
515|/\r| \r \r <CR>
516|/\b| \b \b <BS>
517|/\n| \n \n end-of-line
518|/~| ~ \~ last given substitute string
519|/\1| \1 \1 same string as matched by first \(\) {not in Vi}
520|/\2| \2 \2 Like "\1", but uses second \(\)
521 ...
522|/\9| \9 \9 Like "\1", but uses ninth \(\)
523 *E68*
524|/\z1| \z1 \z1 only for syntax highlighting, see |:syn-ext-match|
525 ...
526|/\z1| \z9 \z9 only for syntax highlighting, see |:syn-ext-match|
527
528 x x a character with no special meaning matches itself
529
530|/[]| [] \[] any character specified inside the []
Bram Moolenaar00154502013-02-13 16:15:55 +0100531|/\%[]| \%[] \%[] a sequence of optionally matched atoms
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000533|/\c| \c \c ignore case, do not use the 'ignorecase' option
534|/\C| \C \C match case, do not use the 'ignorecase' option
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200535|/\Z| \Z \Z ignore differences in Unicode "combining characters".
536 Useful when searching voweled Hebrew or Arabic text.
537
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538|/\m| \m \m 'magic' on for the following chars in the pattern
539|/\M| \M \M 'magic' off for the following chars in the pattern
540|/\v| \v \v the following chars in the pattern are "very magic"
541|/\V| \V \V the following chars in the pattern are "very nomagic"
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200542|/\%#=| \%#=1 \%#=1 select regexp engine |/zero-width|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100544|/\%d| \%d \%d match specified decimal character (eg \%d123)
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000545|/\%x| \%x \%x match specified hex character (eg \%x2a)
546|/\%o| \%o \%o match specified octal character (eg \%o040)
547|/\%u| \%u \%u match specified multibyte character (eg \%u20ac)
548|/\%U| \%U \%U match specified large multibyte character (eg
549 \%U12345678)
Bram Moolenaar8df5acf2014-05-13 19:37:29 +0200550|/\%C| \%C \%C match any composing characters
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551
552Example matches ~
553\<\I\i* or
554\<\h\w*
555\<[a-zA-Z_][a-zA-Z0-9_]*
556 An identifier (e.g., in a C program).
557
558\(\.$\|\. \) A period followed by <EOL> or a space.
559
560[.!?][])"']*\($\|[ ]\) A search pattern that finds the end of a sentence,
561 with almost the same definition as the ")" command.
562
563cat\Z Both "cat" and "càt" ("a" followed by 0x0300)
564 Does not match "càt" (character 0x00e0), even
565 though it may look the same.
566
567
568==============================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695. Multi items *pattern-multi-items*
570
571An atom can be followed by an indication of how many times the atom can be
572matched and in what way. This is called a multi. See |/multi| for an
573overview.
574
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 */star* */\star* *E56*
576* (use \* when 'magic' is not set)
577 Matches 0 or more of the preceding atom, as many as possible.
578 Example 'nomagic' matches ~
579 a* a\* "", "a", "aa", "aaa", etc.
580 .* \.\* anything, also an empty string, no end-of-line
581 \_.* \_.\* everything up to the end of the buffer
582 \_.*END \_.\*END everything up to and including the last "END"
583 in the buffer
584
585 Exception: When "*" is used at the start of the pattern or just after
586 "^" it matches the star character.
587
588 Be aware that repeating "\_." can match a lot of text and take a long
589 time. For example, "\_.*END" matches all text from the current
590 position to the last occurrence of "END" in the file. Since the "*"
591 will match as many as possible, this first skips over all lines until
592 the end of the file and then tries matching "END", backing up one
593 character at a time.
594
595 */\+* *E57*
596\+ Matches 1 or more of the preceding atom, as many as possible. {not in
597 Vi}
598 Example matches ~
599 ^.\+$ any non-empty line
600 \s\+ white space of at least one character
601
602 */\=*
603\= Matches 0 or 1 of the preceding atom, as many as possible. {not in Vi}
604 Example matches ~
605 foo\= "fo" and "foo"
606
607 */\?*
608\? Just like \=. Cannot be used when searching backwards with the "?"
609 command. {not in Vi}
610
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200611 */\{* *E58* *E60* *E554* *E870*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612\{n,m} Matches n to m of the preceding atom, as many as possible
613\{n} Matches n of the preceding atom
614\{n,} Matches at least n of the preceding atom, as many as possible
615\{,m} Matches 0 to m of the preceding atom, as many as possible
616\{} Matches 0 or more of the preceding atom, as many as possible (like *)
617 */\{-*
618\{-n,m} matches n to m of the preceding atom, as few as possible
619\{-n} matches n of the preceding atom
620\{-n,} matches at least n of the preceding atom, as few as possible
621\{-,m} matches 0 to m of the preceding atom, as few as possible
622\{-} matches 0 or more of the preceding atom, as few as possible
623 {Vi does not have any of these}
624
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000625 n and m are positive decimal numbers or zero
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000626 *non-greedy*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627 If a "-" appears immediately after the "{", then a shortest match
628 first algorithm is used (see example below). In particular, "\{-}" is
629 the same as "*" but uses the shortest match first algorithm. BUT: A
630 match that starts earlier is preferred over a shorter match: "a\{-}b"
631 matches "aaab" in "xaaab".
632
633 Example matches ~
634 ab\{2,3}c "abbc" or "abbbc"
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000635 a\{5} "aaaaa"
636 ab\{2,}c "abbc", "abbbc", "abbbbc", etc.
637 ab\{,3}c "ac", "abc", "abbc" or "abbbc"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638 a[bc]\{3}d "abbbd", "abbcd", "acbcd", "acccd", etc.
639 a\(bc\)\{1,2}d "abcd" or "abcbcd"
640 a[bc]\{-}[cd] "abc" in "abcd"
641 a[bc]*[cd] "abcd" in "abcd"
642
643 The } may optionally be preceded with a backslash: \{n,m\}.
644
645 */\@=*
646\@= Matches the preceding atom with zero width. {not in Vi}
647 Like "(?=pattern)" in Perl.
648 Example matches ~
649 foo\(bar\)\@= "foo" in "foobar"
650 foo\(bar\)\@=foo nothing
651 */zero-width*
652 When using "\@=" (or "^", "$", "\<", "\>") no characters are included
653 in the match. These items are only used to check if a match can be
654 made. This can be tricky, because a match with following items will
655 be done in the same position. The last example above will not match
656 "foobarfoo", because it tries match "foo" in the same position where
657 "bar" matched.
658
659 Note that using "\&" works the same as using "\@=": "foo\&.." is the
660 same as "\(foo\)\@=..". But using "\&" is easier, you don't need the
661 braces.
662
663
664 */\@!*
665\@! Matches with zero width if the preceding atom does NOT match at the
666 current position. |/zero-width| {not in Vi}
Bram Moolenaar1aeaf8c2012-05-18 13:46:39 +0200667 Like "(?!pattern)" in Perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668 Example matches ~
669 foo\(bar\)\@! any "foo" not followed by "bar"
Bram Moolenaar1aeaf8c2012-05-18 13:46:39 +0200670 a.\{-}p\@! "a", "ap", "app", "appp", etc. not immediately
Bram Moolenaar251e1912011-06-19 05:09:16 +0200671 followed by a "p"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672 if \(\(then\)\@!.\)*$ "if " not followed by "then"
673
674 Using "\@!" is tricky, because there are many places where a pattern
675 does not match. "a.*p\@!" will match from an "a" to the end of the
676 line, because ".*" can match all characters in the line and the "p"
677 doesn't match at the end of the line. "a.\{-}p\@!" will match any
Bram Moolenaar1aeaf8c2012-05-18 13:46:39 +0200678 "a", "ap", "app", etc. that isn't followed by a "p", because the "."
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679 can match a "p" and "p\@!" doesn't match after that.
680
681 You can't use "\@!" to look for a non-match before the matching
682 position: "\(foo\)\@!bar" will match "bar" in "foobar", because at the
683 position where "bar" matches, "foo" does not match. To avoid matching
684 "foobar" you could use "\(foo\)\@!...bar", but that doesn't match a
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000685 bar at the start of a line. Use "\(foo\)\@<!bar".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686
Bram Moolenaar8e5af3e2011-04-28 19:02:44 +0200687 Useful example: to find "foo" in a line that does not contain "bar": >
688 /^\%(.*bar\)\@!.*\zsfoo
689< This pattern first checks that there is not a single position in the
690 line where "bar" matches. If ".*bar" matches somewhere the \@! will
691 reject the pattern. When there is no match any "foo" will be found.
692 The "\zs" is to have the match start just before "foo".
693
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 */\@<=*
695\@<= Matches with zero width if the preceding atom matches just before what
696 follows. |/zero-width| {not in Vi}
Bram Moolenaar1aeaf8c2012-05-18 13:46:39 +0200697 Like "(?<=pattern)" in Perl, but Vim allows non-fixed-width patterns.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 Example matches ~
699 \(an\_s\+\)\@<=file "file" after "an" and white space or an
700 end-of-line
701 For speed it's often much better to avoid this multi. Try using "\zs"
702 instead |/\zs|. To match the same as the above example:
703 an\_s\+\zsfile
Bram Moolenaar543b7ef2013-06-01 14:50:56 +0200704 At least set a limit for the look-behind, see below.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705
706 "\@<=" and "\@<!" check for matches just before what follows.
707 Theoretically these matches could start anywhere before this position.
708 But to limit the time needed, only the line where what follows matches
709 is searched, and one line before that (if there is one). This should
710 be sufficient to match most things and not be too slow.
Bram Moolenaarfb539272014-08-22 19:21:47 +0200711
712 In the old regexp engine the part of the pattern after "\@<=" and
713 "\@<!" are checked for a match first, thus things like "\1" don't work
714 to reference \(\) inside the preceding atom. It does work the other
715 way around:
716 Bad example matches ~
717 \%#=1\1\@<=,\([a-z]\+\) ",abc" in "abc,abc"
718
719 However, the new regexp engine works differently, it is better to not
720 rely on this behavior, do not use \@<= if it can be avoided:
721 Example matches ~
722 \([a-z]\+\)\zs,\1 ",abc" in "abc,abc"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723
Bram Moolenaar543b7ef2013-06-01 14:50:56 +0200724\@123<=
725 Like "\@<=" but only look back 123 bytes. This avoids trying lots
726 of matches that are known to fail and make executing the pattern very
727 slow. Example, check if there is a "<" just before "span":
728 /<\@1<=span
729 This will try matching "<" only one byte before "span", which is the
730 only place that works anyway.
731 After crossing a line boundary, the limit is relative to the end of
732 the line. Thus the characters at the start of the line with the match
733 are not counted (this is just to keep it simple).
734 The number zero is the same as no limit.
735
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 */\@<!*
737\@<! Matches with zero width if the preceding atom does NOT match just
738 before what follows. Thus this matches if there is no position in the
739 current or previous line where the atom matches such that it ends just
740 before what follows. |/zero-width| {not in Vi}
Bram Moolenaar1aeaf8c2012-05-18 13:46:39 +0200741 Like "(?<!pattern)" in Perl, but Vim allows non-fixed-width patterns.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 The match with the preceding atom is made to end just before the match
743 with what follows, thus an atom that ends in ".*" will work.
744 Warning: This can be slow (because many positions need to be checked
Bram Moolenaar543b7ef2013-06-01 14:50:56 +0200745 for a match). Use a limit if you can, see below.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 Example matches ~
747 \(foo\)\@<!bar any "bar" that's not in "foobar"
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000748 \(\/\/.*\)\@<!in "in" which is not after "//"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749
Bram Moolenaar543b7ef2013-06-01 14:50:56 +0200750\@123<!
751 Like "\@<!" but only look back 123 bytes. This avoids trying lots of
752 matches that are known to fail and make executing the pattern very
753 slow.
754
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 */\@>*
756\@> Matches the preceding atom like matching a whole pattern. {not in Vi}
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000757 Like "(?>pattern)" in Perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758 Example matches ~
759 \(a*\)\@>a nothing (the "a*" takes all the "a"'s, there can't be
760 another one following)
761
762 This matches the preceding atom as if it was a pattern by itself. If
763 it doesn't match, there is no retry with shorter sub-matches or
764 anything. Observe this difference: "a*b" and "a*ab" both match
765 "aaab", but in the second case the "a*" matches only the first two
766 "a"s. "\(a*\)\@>ab" will not match "aaab", because the "a*" matches
767 the "aaa" (as many "a"s as possible), thus the "ab" can't match.
768
769
770==============================================================================
7716. Ordinary atoms *pattern-atoms*
772
773An ordinary atom can be:
774
775 */^*
776^ At beginning of pattern or after "\|", "\(", "\%(" or "\n": matches
777 start-of-line; at other positions, matches literal '^'. |/zero-width|
778 Example matches ~
779 ^beep( the start of the C function "beep" (probably).
780
781 */\^*
782\^ Matches literal '^'. Can be used at any position in the pattern.
783
784 */\_^*
785\_^ Matches start-of-line. |/zero-width| Can be used at any position in
786 the pattern.
787 Example matches ~
788 \_s*\_^foo white space and blank lines and then "foo" at
789 start-of-line
790
791 */$*
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000792$ At end of pattern or in front of "\|", "\)" or "\n" ('magic' on):
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793 matches end-of-line <EOL>; at other positions, matches literal '$'.
794 |/zero-width|
795
796 */\$*
797\$ Matches literal '$'. Can be used at any position in the pattern.
798
799 */\_$*
800\_$ Matches end-of-line. |/zero-width| Can be used at any position in the
801 pattern. Note that "a\_$b" never matches, since "b" cannot match an
802 end-of-line. Use "a\nb" instead |/\n|.
803 Example matches ~
804 foo\_$\_s* "foo" at end-of-line and following white space and
805 blank lines
806
807. (with 'nomagic': \.) */.* */\.*
808 Matches any single character, but not an end-of-line.
809
810 */\_.*
811\_. Matches any single character or end-of-line.
812 Careful: "\_.*" matches all text to the end of the buffer!
813
814 */\<*
815\< Matches the beginning of a word: The next char is the first char of a
816 word. The 'iskeyword' option specifies what is a word character.
817 |/zero-width|
818
819 */\>*
820\> Matches the end of a word: The previous char is the last char of a
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000821 word. The 'iskeyword' option specifies what is a word character.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 |/zero-width|
823
824 */\zs*
825\zs Matches at any position, and sets the start of the match there: The
826 next char is the first char of the whole match. |/zero-width|
827 Example: >
828 /^\s*\zsif
829< matches an "if" at the start of a line, ignoring white space.
830 Can be used multiple times, the last one encountered in a matching
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000831 branch is used. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 /\(.\{-}\zsFab\)\{3}
833< Finds the third occurrence of "Fab".
Bram Moolenaar34401cc2014-08-29 15:12:19 +0200834 This cannot be followed by a multi. *E888*
Bram Moolenaardb84e452010-08-15 13:50:43 +0200835 {not in Vi} {not available when compiled without the |+syntax| feature}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836 */\ze*
837\ze Matches at any position, and sets the end of the match there: The
838 previous char is the last char of the whole match. |/zero-width|
839 Can be used multiple times, the last one encountered in a matching
840 branch is used.
841 Example: "end\ze\(if\|for\)" matches the "end" in "endif" and
842 "endfor".
Bram Moolenaar6e932462014-09-09 18:48:09 +0200843 This cannot be followed by a multi. |E888|
Bram Moolenaardb84e452010-08-15 13:50:43 +0200844 {not in Vi} {not available when compiled without the |+syntax| feature}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845
846 */\%^* *start-of-file*
847\%^ Matches start of the file. When matching with a string, matches the
848 start of the string. {not in Vi}
849 For example, to find the first "VIM" in a file: >
850 /\%^\_.\{-}\zsVIM
851<
852 */\%$* *end-of-file*
853\%$ Matches end of the file. When matching with a string, matches the
854 end of the string. {not in Vi}
855 Note that this does NOT find the last "VIM" in a file: >
856 /VIM\_.\{-}\%$
857< It will find the next VIM, because the part after it will always
858 match. This one will find the last "VIM" in the file: >
859 /VIM\ze\(\(VIM\)\@!\_.\)*\%$
860< This uses |/\@!| to ascertain that "VIM" does NOT match in any
861 position after the first "VIM".
862 Searching from the end of the file backwards is easier!
863
Bram Moolenaar33aec762006-01-22 23:30:12 +0000864 */\%V*
865\%V Match inside the Visual area. When Visual mode has already been
866 stopped match in the area that |gv| would reselect.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100867 This is a |/zero-width| match. To make sure the whole pattern is
868 inside the Visual area put it at the start and end of the pattern,
869 e.g.: >
870 /\%Vfoo.*bar\%V
871< Only works for the current buffer.
Bram Moolenaar33aec762006-01-22 23:30:12 +0000872
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 */\%#* *cursor-position*
874\%# Matches with the cursor position. Only works when matching in a
875 buffer displayed in a window. {not in Vi}
876 WARNING: When the cursor is moved after the pattern was used, the
877 result becomes invalid. Vim doesn't automatically update the matches.
878 This is especially relevant for syntax highlighting and 'hlsearch'.
879 In other words: When the cursor moves the display isn't updated for
880 this change. An update is done for lines which are changed (the whole
881 line is updated) or when using the |CTRL-L| command (the whole screen
882 is updated). Example, to highlight the word under the cursor: >
883 /\k*\%#\k*
884< When 'hlsearch' is set and you move the cursor around and make changes
885 this will clearly show when the match is updated or not.
886
Bram Moolenaar33aec762006-01-22 23:30:12 +0000887 */\%'m* */\%<'m* */\%>'m*
888\%'m Matches with the position of mark m.
889\%<'m Matches before the position of mark m.
890\%>'m Matches after the position of mark m.
891 Example, to highlight the text from mark 's to 'e: >
892 /.\%>'s.*\%<'e..
893< Note that two dots are required to include mark 'e in the match. That
894 is because "\%<'e" matches at the character before the 'e mark, and
895 since it's a |/zero-width| match it doesn't include that character.
896 {not in Vi}
897 WARNING: When the mark is moved after the pattern was used, the result
898 becomes invalid. Vim doesn't automatically update the matches.
Bram Moolenaar1ef15e32006-02-01 21:56:25 +0000899 Similar to moving the cursor for "\%#" |/\%#|.
Bram Moolenaar33aec762006-01-22 23:30:12 +0000900
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901 */\%l* */\%>l* */\%<l*
902\%23l Matches in a specific line.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000903\%<23l Matches above a specific line (lower line number).
904\%>23l Matches below a specific line (higher line number).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 These three can be used to match specific lines in a buffer. The "23"
906 can be any line number. The first line is 1. {not in Vi}
907 WARNING: When inserting or deleting lines Vim does not automatically
908 update the matches. This means Syntax highlighting quickly becomes
909 wrong.
910 Example, to highlight the line where the cursor currently is: >
911 :exe '/\%' . line(".") . 'l.*'
912< When 'hlsearch' is set and you move the cursor around and make changes
913 this will clearly show when the match is updated or not.
914
915 */\%c* */\%>c* */\%<c*
916\%23c Matches in a specific column.
917\%<23c Matches before a specific column.
918\%>23c Matches after a specific column.
919 These three can be used to match specific columns in a buffer or
920 string. The "23" can be any column number. The first column is 1.
921 Actually, the column is the byte number (thus it's not exactly right
922 for multi-byte characters). {not in Vi}
923 WARNING: When inserting or deleting text Vim does not automatically
924 update the matches. This means Syntax highlighting quickly becomes
925 wrong.
926 Example, to highlight the column where the cursor currently is: >
927 :exe '/\%' . col(".") . 'c'
928< When 'hlsearch' is set and you move the cursor around and make changes
929 this will clearly show when the match is updated or not.
930 Example for matching a single byte in column 44: >
931 /\%>43c.\%<46c
932< Note that "\%<46c" matches in column 45 when the "." matches a byte in
933 column 44.
934 */\%v* */\%>v* */\%<v*
935\%23v Matches in a specific virtual column.
936\%<23v Matches before a specific virtual column.
937\%>23v Matches after a specific virtual column.
938 These three can be used to match specific virtual columns in a buffer
939 or string. When not matching with a buffer in a window, the option
940 values of the current window are used (e.g., 'tabstop').
941 The "23" can be any column number. The first column is 1.
942 Note that some virtual column positions will never match, because they
Bram Moolenaar69c2f172007-05-12 14:57:31 +0000943 are halfway through a tab or other character that occupies more than
944 one screen character. {not in Vi}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945 WARNING: When inserting or deleting text Vim does not automatically
Bram Moolenaarde934d72005-05-22 22:09:40 +0000946 update highlighted matches. This means Syntax highlighting quickly
947 becomes wrong.
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000948 Example, to highlight all the characters after virtual column 72: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 /\%>72v.*
950< When 'hlsearch' is set and you move the cursor around and make changes
951 this will clearly show when the match is updated or not.
952 To match the text up to column 17: >
953 /.*\%17v
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100954< Column 17 is included, because that's where the "\%17v" matches,
955 even though this is a |/zero-width| match. Adding a dot to match the
956 next character has the same result: >
957 /.*\%17v.
958< This command does the same thing, but also matches when there is no
959 character in column 17: >
960 /.*\%<18v.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961<
962
963Character classes: {not in Vi}
964\i identifier character (see 'isident' option) */\i*
965\I like "\i", but excluding digits */\I*
966\k keyword character (see 'iskeyword' option) */\k*
967\K like "\k", but excluding digits */\K*
968\f file name character (see 'isfname' option) */\f*
969\F like "\f", but excluding digits */\F*
970\p printable character (see 'isprint' option) */\p*
971\P like "\p", but excluding digits */\P*
972
973NOTE: the above also work for multi-byte characters. The ones below only
974match ASCII characters, as indicated by the range.
975
976 *whitespace* *white-space*
977\s whitespace character: <Space> and <Tab> */\s*
978\S non-whitespace character; opposite of \s */\S*
979\d digit: [0-9] */\d*
980\D non-digit: [^0-9] */\D*
981\x hex digit: [0-9A-Fa-f] */\x*
982\X non-hex digit: [^0-9A-Fa-f] */\X*
983\o octal digit: [0-7] */\o*
984\O non-octal digit: [^0-7] */\O*
985\w word character: [0-9A-Za-z_] */\w*
986\W non-word character: [^0-9A-Za-z_] */\W*
987\h head of word character: [A-Za-z_] */\h*
988\H non-head of word character: [^A-Za-z_] */\H*
989\a alphabetic character: [A-Za-z] */\a*
990\A non-alphabetic character: [^A-Za-z] */\A*
991\l lowercase character: [a-z] */\l*
992\L non-lowercase character: [^a-z] */\L*
993\u uppercase character: [A-Z] */\u*
Bram Moolenaarf1568ec2011-12-14 21:17:39 +0100994\U non-uppercase character: [^A-Z] */\U*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995
996 NOTE: Using the atom is faster than the [] form.
997
998 NOTE: 'ignorecase', "\c" and "\C" are not used by character classes.
999
1000 */\_* *E63* */\_i* */\_I* */\_k* */\_K* */\_f* */\_F*
1001 */\_p* */\_P* */\_s* */\_S* */\_d* */\_D* */\_x* */\_X*
1002 */\_o* */\_O* */\_w* */\_W* */\_h* */\_H* */\_a* */\_A*
1003 */\_l* */\_L* */\_u* */\_U*
1004\_x Where "x" is any of the characters above: The character class with
1005 end-of-line added
1006(end of character classes)
1007
1008\e matches <Esc> */\e*
1009\t matches <Tab> */\t*
1010\r matches <CR> */\r*
1011\b matches <BS> */\b*
1012\n matches an end-of-line */\n*
1013 When matching in a string instead of buffer text a literal newline
1014 character is matched.
1015
1016~ matches the last given substitute string */~* */\~*
1017
1018\(\) A pattern enclosed by escaped parentheses. */\(* */\(\)* */\)*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001019 E.g., "\(^a\)" matches 'a' at the start of a line.
1020 *E51* *E54* *E55* *E872* *E873*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021
1022\1 Matches the same string that was matched by */\1* *E65*
1023 the first sub-expression in \( and \). {not in Vi}
1024 Example: "\([a-z]\).\1" matches "ata", "ehe", "tot", etc.
1025\2 Like "\1", but uses second sub-expression, */\2*
1026 ... */\3*
1027\9 Like "\1", but uses ninth sub-expression. */\9*
1028 Note: The numbering of groups is done based on which "\(" comes first
1029 in the pattern (going left to right), NOT based on what is matched
1030 first.
1031
1032\%(\) A pattern enclosed by escaped parentheses. */\%(\)* */\%(* *E53*
1033 Just like \(\), but without counting it as a sub-expression. This
1034 allows using more groups and it's a little bit faster.
1035 {not in Vi}
1036
1037x A single character, with no special meaning, matches itself
1038
1039 */\* */\\*
1040\x A backslash followed by a single character, with no special meaning,
1041 is reserved for future expansions
1042
1043[] (with 'nomagic': \[]) */[]* */\[]* */\_[]* */collection*
1044\_[]
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +00001045 A collection. This is a sequence of characters enclosed in brackets.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046 It matches any single character in the collection.
1047 Example matches ~
1048 [xyz] any 'x', 'y' or 'z'
1049 [a-zA-Z]$ any alphabetic character at the end of a line
1050 \c[a-z]$ same
Bram Moolenaara3e6bc92013-01-30 14:18:00 +01001051 [А-яЁё] Russian alphabet (with utf-8 and cp1251)
1052
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00001053 */[\n]*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054 With "\_" prepended the collection also includes the end-of-line.
1055 The same can be done by including "\n" in the collection. The
1056 end-of-line is also matched when the collection starts with "^"! Thus
1057 "\_[^ab]" matches the end-of-line and any character but "a" and "b".
1058 This makes it Vi compatible: Without the "\_" or "\n" the collection
1059 does not match an end-of-line.
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001060 *E769*
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001061 When the ']' is not there Vim will not give an error message but
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001062 assume no collection is used. Useful to search for '['. However, you
Bram Moolenaar5837f1f2015-03-21 18:06:14 +01001063 do get E769 for internal searching. And be aware that in a
1064 `:substitute` command the whole command becomes the pattern. E.g.
1065 ":s/[/x/" searches for "[/x" and replaces it with nothing. It does
1066 not search for "[" and replaces it with "x"!
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001067
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 If the sequence begins with "^", it matches any single character NOT
1069 in the collection: "[^xyz]" matches anything but 'x', 'y' and 'z'.
1070 - If two characters in the sequence are separated by '-', this is
1071 shorthand for the full list of ASCII characters between them. E.g.,
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02001072 "[0-9]" matches any decimal digit. Non-ASCII characters can be
1073 used, but the character values must not be more than 256 apart.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074 - A character class expression is evaluated to the set of characters
1075 belonging to that character class. The following character classes
1076 are supported:
1077 Name Contents ~
1078*[:alnum:]* [:alnum:] letters and digits
1079*[:alpha:]* [:alpha:] letters
1080*[:blank:]* [:blank:] space and tab characters
1081*[:cntrl:]* [:cntrl:] control characters
1082*[:digit:]* [:digit:] decimal digits
1083*[:graph:]* [:graph:] printable characters excluding space
1084*[:lower:]* [:lower:] lowercase letters (all letters when
1085 'ignorecase' is used)
1086*[:print:]* [:print:] printable characters including space
1087*[:punct:]* [:punct:] punctuation characters
1088*[:space:]* [:space:] whitespace characters
1089*[:upper:]* [:upper:] uppercase letters (all letters when
1090 'ignorecase' is used)
1091*[:xdigit:]* [:xdigit:] hexadecimal digits
1092*[:return:]* [:return:] the <CR> character
1093*[:tab:]* [:tab:] the <Tab> character
1094*[:escape:]* [:escape:] the <Esc> character
1095*[:backspace:]* [:backspace:] the <BS> character
1096 The brackets in character class expressions are additional to the
1097 brackets delimiting a collection. For example, the following is a
1098 plausible pattern for a UNIX filename: "[-./[:alnum:]_~]\+" That is,
1099 a list of at least one character, each of which is either '-', '.',
1100 '/', alphabetic, numeric, '_' or '~'.
1101 These items only work for 8-bit characters.
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001102 */[[=* *[==]*
1103 - An equivalence class. This means that characters are matched that
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001104 have almost the same meaning, e.g., when ignoring accents. This
1105 only works for Unicode, latin1 and latin9. The form is:
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001106 [=a=]
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001107 */[[.* *[..]*
1108 - A collation element. This currently simply accepts a single
1109 character in the form:
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001110 [.a.]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111 */\]*
1112 - To include a literal ']', '^', '-' or '\' in the collection, put a
1113 backslash before it: "[xyz\]]", "[\^xyz]", "[xy\-z]" and "[xyz\\]".
1114 (Note: POSIX does not support the use of a backslash this way). For
1115 ']' you can also make it the first character (following a possible
1116 "^"): "[]xyz]" or "[^]xyz]" {not in Vi}.
1117 For '-' you can also make it the first or last character: "[-xyz]",
1118 "[^-xyz]" or "[xyz-]". For '\' you can also let it be followed by
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02001119 any character that's not in "^]-\bdertnoUux". "[\xyz]" matches '\',
1120 'x', 'y' and 'z'. It's better to use "\\" though, future expansions
1121 may use other characters after '\'.
Bram Moolenaarff034192013-04-24 18:51:19 +02001122 - Omitting the trailing ] is not considered an error. "[]" works like
1123 "[]]", it matches the ']' character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 - The following translations are accepted when the 'l' flag is not
1125 included in 'cpoptions' {not in Vi}:
1126 \e <Esc>
1127 \t <Tab>
1128 \r <CR> (NOT end-of-line!)
1129 \b <BS>
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00001130 \n line break, see above |/[\n]|
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001131 \d123 decimal number of character
1132 \o40 octal number of character up to 0377
1133 \x20 hexadecimal number of character up to 0xff
1134 \u20AC hex. number of multibyte character up to 0xffff
1135 \U1234 hex. number of multibyte character up to 0xffffffff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 NOTE: The other backslash codes mentioned above do not work inside
1137 []!
1138 - Matching with a collection can be slow, because each character in
1139 the text has to be compared with each character in the collection.
1140 Use one of the other atoms above when possible. Example: "\d" is
1141 much faster than "[0-9]" and matches the same characters.
1142
1143 */\%[]* *E69* *E70* *E369*
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001144\%[] A sequence of optionally matched atoms. This always matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145 It matches as much of the list of atoms it contains as possible. Thus
1146 it stops at the first atom that doesn't match. For example: >
1147 /r\%[ead]
1148< matches "r", "re", "rea" or "read". The longest that matches is used.
1149 To match the Ex command "function", where "fu" is required and
1150 "nction" is optional, this would work: >
1151 /\<fu\%[nction]\>
1152< The end-of-word atom "\>" is used to avoid matching "fu" in "full".
1153 It gets more complicated when the atoms are not ordinary characters.
1154 You don't often have to use it, but it is possible. Example: >
1155 /\<r\%[[eo]ad]\>
1156< Matches the words "r", "re", "ro", "rea", "roa", "read" and "road".
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00001157 There can be no \(\), \%(\) or \z(\) items inside the [] and \%[] does
1158 not nest.
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001159 To include a "[" use "[[]" and for "]" use []]", e.g.,: >
1160 /index\%[[[]0[]]]
1161< matches "index" "index[", "index[0" and "index[0]".
Bram Moolenaardb84e452010-08-15 13:50:43 +02001162 {not available when compiled without the |+syntax| feature}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163
Bram Moolenaar677ee682005-01-27 14:41:15 +00001164 */\%d* */\%x* */\%o* */\%u* */\%U* *E678*
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001165
1166\%d123 Matches the character specified with a decimal number. Must be
1167 followed by a non-digit.
1168\%o40 Matches the character specified with an octal number up to 0377.
1169 Numbers below 040 must be followed by a non-octal digit or a non-digit.
1170\%x2a Matches the character specified with up to two hexadecimal characters.
1171\%u20AC Matches the character specified with up to four hexadecimal
1172 characters.
1173\%U1234abcd Matches the character specified with up to eight hexadecimal
1174 characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175
1176==============================================================================
11777. Ignoring case in a pattern */ignorecase*
1178
1179If the 'ignorecase' option is on, the case of normal letters is ignored.
1180'smartcase' can be set to ignore case when the pattern contains lowercase
1181letters only.
1182 */\c* */\C*
1183When "\c" appears anywhere in the pattern, the whole pattern is handled like
1184'ignorecase' is on. The actual value of 'ignorecase' and 'smartcase' is
1185ignored. "\C" does the opposite: Force matching case for the whole pattern.
1186{only Vim supports \c and \C}
1187Note that 'ignorecase', "\c" and "\C" are not used for the character classes.
1188
1189Examples:
1190 pattern 'ignorecase' 'smartcase' matches ~
1191 foo off - foo
1192 foo on - foo Foo FOO
1193 Foo on off foo Foo FOO
1194 Foo on on Foo
1195 \cfoo - - foo Foo FOO
1196 foo\C - - foo
1197
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198Technical detail: *NL-used-for-Nul*
1199<Nul> characters in the file are stored as <NL> in memory. In the display
1200they are shown as "^@". The translation is done when reading and writing
1201files. To match a <Nul> with a search pattern you can just enter CTRL-@ or
1202"CTRL-V 000". This is probably just what you expect. Internally the
1203character is replaced with a <NL> in the search pattern. What is unusual is
1204that typing CTRL-V CTRL-J also inserts a <NL>, thus also searches for a <Nul>
1205in the file. {Vi cannot handle <Nul> characters in the file at all}
1206
1207 *CR-used-for-NL*
1208When 'fileformat' is "mac", <NL> characters in the file are stored as <CR>
Bram Moolenaare37d50a2008-08-06 17:06:04 +00001209characters internally. In the text they are shown as "^J". Otherwise this
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210works similar to the usage of <NL> for a <Nul>.
1211
1212When working with expression evaluation, a <NL> character in the pattern
1213matches a <NL> in the string. The use of "\n" (backslash n) to match a <NL>
1214doesn't work there, it only works to match text in the buffer.
1215
1216 *pattern-multi-byte*
1217Patterns will also work with multi-byte characters, mostly as you would
1218expect. But invalid bytes may cause trouble, a pattern with an invalid byte
1219will probably never match.
1220
1221==============================================================================
Bram Moolenaar362e1a32006-03-06 23:29:24 +000012228. Composing characters *patterns-composing*
1223
1224 */\Z*
Bram Moolenaar8df5acf2014-05-13 19:37:29 +02001225When "\Z" appears anywhere in the pattern, all composing characters are
1226ignored. Thus only the base characters need to match, the composing
1227characters may be different and the number of composing characters may differ.
1228Only relevant when 'encoding' is "utf-8".
Bram Moolenaar543b7ef2013-06-01 14:50:56 +02001229Exception: If the pattern starts with one or more composing characters, these
1230must match.
Bram Moolenaar8df5acf2014-05-13 19:37:29 +02001231 */\%C*
1232Use "\%C" to skip any composing characters. For example, the pattern "a" does
1233not match in "càt" (where the a has the composing character 0x0300), but
1234"a\%C" does. Note that this does not match "cát" (where the á is character
12350xe1, it does not have a compositing character). It does match "cat" (where
1236the a is just an a).
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001237
1238When a composing character appears at the start of the pattern of after an
1239item that doesn't include the composing character, a match is found at any
1240character that includes this composing character.
1241
1242When using a dot and a composing character, this works the same as the
1243composing character by itself, except that it doesn't matter what comes before
1244this.
1245
Bram Moolenaar543b7ef2013-06-01 14:50:56 +02001246The order of composing characters does not matter. Also, the text may have
1247more composing characters than the pattern, it still matches. But all
1248composing characters in the pattern must be found in the text.
1249
1250Suppose B is a base character and x and y are composing characters:
1251 pattern text match ~
1252 Bxy Bxy yes (perfect match)
1253 Bxy Byx yes (order ignored)
1254 Bxy By no (x missing)
1255 Bxy Bx no (y missing)
Bram Moolenaar203d04d2013-06-06 21:36:40 +02001256 Bx Bx yes (perfect match)
Bram Moolenaar543b7ef2013-06-01 14:50:56 +02001257 Bx By no (x missing)
1258 Bx Bxy yes (extra y ignored)
1259 Bx Byx yes (extra y ignored)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001260
1261==============================================================================
12629. Compare with Perl patterns *perl-patterns*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263
1264Vim's regexes are most similar to Perl's, in terms of what you can do. The
1265difference between them is mostly just notation; here's a summary of where
1266they differ:
1267
1268Capability in Vimspeak in Perlspeak ~
1269----------------------------------------------------------------
1270force case insensitivity \c (?i)
1271force case sensitivity \C (?-i)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001272backref-less grouping \%(atom\) (?:atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273conservative quantifiers \{-n,m} *?, +?, ??, {}?
12740-width match atom\@= (?=atom)
12750-width non-match atom\@! (?!atom)
12760-width preceding match atom\@<= (?<=atom)
12770-width preceding non-match atom\@<! (?<!atom)
1278match without retry atom\@> (?>atom)
1279
1280Vim and Perl handle newline characters inside a string a bit differently:
1281
1282In Perl, ^ and $ only match at the very beginning and end of the text,
1283by default, but you can set the 'm' flag, which lets them match at
1284embedded newlines as well. You can also set the 's' flag, which causes
1285a . to match newlines as well. (Both these flags can be changed inside
1286a pattern using the same syntax used for the i flag above, BTW.)
1287
1288On the other hand, Vim's ^ and $ always match at embedded newlines, and
1289you get two separate atoms, \%^ and \%$, which only match at the very
1290start and end of the text, respectively. Vim solves the second problem
1291by giving you the \_ "modifier": put it in front of a . or a character
1292class, and they will match newlines as well.
1293
1294Finally, these constructs are unique to Perl:
1295- execution of arbitrary code in the regex: (?{perl code})
1296- conditional expressions: (?(condition)true-expr|false-expr)
1297
1298...and these are unique to Vim:
1299- changing the magic-ness of a pattern: \v \V \m \M
1300 (very useful for avoiding backslashitis)
1301- sequence of optionally matching atoms: \%[atoms]
1302- \& (which is to \| what "and" is to "or"; it forces several branches
1303 to match at one spot)
1304- matching lines/columns by number: \%5l \%5c \%5v
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001305- setting the start and end of the match: \zs \ze
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306
1307==============================================================================
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000130810. Highlighting matches *match-highlight*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309
1310 *:mat* *:match*
1311:mat[ch] {group} /{pattern}/
1312 Define a pattern to highlight in the current window. It will
1313 be highlighted with {group}. Example: >
1314 :highlight MyGroup ctermbg=green guibg=green
1315 :match MyGroup /TODO/
1316< Instead of // any character can be used to mark the start and
1317 end of the {pattern}. Watch out for using special characters,
1318 such as '"' and '|'.
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00001319
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 {group} must exist at the moment this command is executed.
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00001321
1322 The {group} highlighting still applies when a character is
Bram Moolenaar6ee10162007-07-26 20:58:42 +00001323 to be highlighted for 'hlsearch', as the highlighting for
1324 matches is given higher priority than that of 'hlsearch'.
1325 Syntax highlighting (see 'syntax') is also overruled by
1326 matches.
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00001327
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 Note that highlighting the last used search pattern with
1329 'hlsearch' is used in all windows, while the pattern defined
1330 with ":match" only exists in the current window. It is kept
1331 when switching to another buffer.
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00001332
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00001333 'ignorecase' does not apply, use |/\c| in the pattern to
1334 ignore case. Otherwise case is not ignored.
1335
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001336 'redrawtime' defines the maximum time searched for pattern
1337 matches.
1338
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00001339 When matching end-of-line and Vim redraws only part of the
1340 display you may get unexpected results. That is because Vim
1341 looks for a match in the line where redrawing starts.
1342
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001343 Also see |matcharg()| and |getmatches()|. The former returns
Bram Moolenaar6ee10162007-07-26 20:58:42 +00001344 the highlight group and pattern of a previous |:match|
1345 command. The latter returns a list with highlight groups and
1346 patterns defined by both |matchadd()| and |:match|.
1347
1348 Highlighting matches using |:match| are limited to three
Bram Moolenaar822ff862014-06-12 21:46:14 +02001349 matches (aside from |:match|, |:2match| and |:3match| are
Bram Moolenaar6ee10162007-07-26 20:58:42 +00001350 available). |matchadd()| does not have this limitation and in
1351 addition makes it possible to prioritize matches.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001352
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353 Another example, which highlights all characters in virtual
1354 column 72 and more: >
1355 :highlight rightMargin term=bold ctermfg=blue guifg=blue
1356 :match rightMargin /.\%>72v/
1357< To highlight all character that are in virtual column 7: >
1358 :highlight col8 ctermbg=grey guibg=grey
1359 :match col8 /\%<8v.\%>7v/
1360< Note the use of two items to also match a character that
1361 occupies more than one virtual column, such as a TAB.
1362
1363:mat[ch]
1364:mat[ch] none
1365 Clear a previously defined match pattern.
1366
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00001367
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001368:2mat[ch] {group} /{pattern}/ *:2match*
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00001369:2mat[ch]
1370:2mat[ch] none
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001371:3mat[ch] {group} /{pattern}/ *:3match*
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00001372:3mat[ch]
1373:3mat[ch] none
1374 Just like |:match| above, but set a separate match. Thus
1375 there can be three matches active at the same time. The match
1376 with the lowest number has priority if several match at the
1377 same position.
1378 The ":3match" command is used by the |matchparen| plugin. You
1379 are suggested to use ":match" for manual matching and
1380 ":2match" for another plugin.
1381
1382
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 vim:tw=78:ts=8:ft=help:norl: