blob: f11040c4ec213e5829cafed56108b9dba097df6b [file] [log] [blame]
glepnir8a635292025-03-21 18:12:32 +01001*pattern.txt* For Vim version 9.1. Last change: 2025 Mar 21
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 Moolenaar1588bc82022-03-08 21:35:07 +00002211. Fuzzy matching |fuzzy-matching|
Bram Moolenaar071d4272004-06-13 20:20:40 +000023
24==============================================================================
Bram Moolenaar15146672011-10-20 22:22:38 +0200251. Search commands *search-commands*
Bram Moolenaar071d4272004-06-13 20:20:40 +000026
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>*
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +010036/<CR> Search forward for the [count]'th occurrence of the
37 latest used pattern |last-pattern| with latest used
38 |{offset}|.
Bram Moolenaar071d4272004-06-13 20:20:40 +000039
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +010040//{offset}<CR> Search forward for the [count]'th occurrence of the
41 latest used pattern |last-pattern| with new
42 |{offset}|. If {offset} is empty no offset is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +000043
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>*
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +010053?<CR> Search backward for the [count]'th occurrence of the
54 latest used pattern |last-pattern| with latest used
55 |{offset}|.
Bram Moolenaar071d4272004-06-13 20:20:40 +000056
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +010057??{offset}<CR> Search backward for the [count]'th occurrence of the
58 latest used pattern |last-pattern| with new
59 |{offset}|. If {offset} is empty no offset is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +000060
61 *n*
62n Repeat the latest "/" or "?" [count] times.
Bram Moolenaar2b8388b2015-02-28 13:11:45 +010063 If the cursor doesn't move the search is repeated with
64 count + 1.
Bram Moolenaar68e65602019-05-26 21:33:31 +020065 |last-pattern|
Bram Moolenaar071d4272004-06-13 20:20:40 +000066
67 *N*
68N Repeat the latest "/" or "?" [count] times in
Bram Moolenaar68e65602019-05-26 21:33:31 +020069 opposite direction. |last-pattern|
Bram Moolenaar071d4272004-06-13 20:20:40 +000070
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
Bram Moolenaar664f3cf2019-12-07 16:03:51 +010082 command "/\<keyword\>". |exclusive|
Bram Moolenaar071d4272004-06-13 20:20:40 +000083 '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
Bram Moolenaar25c9c682019-05-05 18:13:34 +020089 Vim (<BS> is CTRL-H or a real backspace).
Bram Moolenaar071d4272004-06-13 20:20:40 +000090
91 *gstar*
92g* Like "*", but don't put "\<" and "\>" around the word.
93 This makes the search also find matches that are not a
Bram Moolenaar25c9c682019-05-05 18:13:34 +020094 whole word.
Bram Moolenaar071d4272004-06-13 20:20:40 +000095
96 *g#*
97g# Like "#", but don't put "\<" and "\>" around the word.
98 This makes the search also find matches that are not a
Bram Moolenaar25c9c682019-05-05 18:13:34 +020099 whole word.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100
101 *gd*
102gd Goto local Declaration. When the cursor is on a local
103 variable, this command will jump to its declaration.
Bram Moolenaar938ae282023-02-20 20:44:55 +0000104 This was made to work for C code, in other languages
105 it may not work well.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106 First Vim searches for the start of the current
107 function, just like "[[". If it is not found the
108 search stops in line 1. If it is found, Vim goes back
109 until a blank line is found. From this position Vim
110 searches for the keyword under the cursor, like with
111 "*", but lines that look like a comment are ignored
112 (see 'comments' option).
113 Note that this is not guaranteed to work, Vim does not
114 really check the syntax, it only searches for a match
115 with the keyword. If included files also need to be
116 searched use the commands listed in |include-search|.
117 After this command |n| searches forward for the next
118 match (not backward).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119
120 *gD*
121gD Goto global Declaration. When the cursor is on a
122 global variable that is defined in the file, this
123 command will jump to its declaration. This works just
124 like "gd", except that the search for the keyword
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200125 always starts in line 1.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126
Bram Moolenaarf75a9632005-09-13 21:20:47 +0000127 *1gd*
1281gd Like "gd", but ignore matches inside a {} block that
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200129 ends before the cursor position.
Bram Moolenaarf75a9632005-09-13 21:20:47 +0000130
131 *1gD*
1321gD Like "gD", but ignore matches inside a {} block that
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200133 ends before the cursor position.
Bram Moolenaarf75a9632005-09-13 21:20:47 +0000134
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135 *CTRL-C*
136CTRL-C Interrupt current (search) command. Use CTRL-Break on
Bram Moolenaar5666fcd2019-12-26 14:35:26 +0100137 MS-Windows |dos-CTRL-Break|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138 In Normal mode, any pending command is aborted.
Bram Moolenaar9fbdbb82022-09-27 17:30:34 +0100139 When Vim was started with output redirected and there
140 are no changed buffers CTRL-C exits Vim. That is to
141 help users who use "vim file | grep word" and don't
142 know how to get out (blindly typing :qa<CR> would
143 work).
glepnir8a635292025-03-21 18:12:32 +0100144 If a popup is open, the active popup will be closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145
146 *:noh* *:nohlsearch*
147:noh[lsearch] Stop the highlighting for the 'hlsearch' option. It
148 is automatically turned back on when using a search
149 command, or setting the 'hlsearch' option.
150 This command doesn't work in an autocommand, because
151 the highlighting state is saved and restored when
152 executing autocommands |autocmd-searchpat|.
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000153 Same thing for when invoking a user function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154
Maxim Kim26de90c2024-06-18 19:32:39 +0200155
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156While typing the search pattern the current match will be shown if the
157'incsearch' option is on. Remember that you still have to finish the search
158command with <CR> to actually position the cursor at the displayed match. Or
159use <Esc> to abandon the search.
160
Maxim Kim26de90c2024-06-18 19:32:39 +0200161 *nohlsearch-auto*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162All matches for the last used search pattern will be highlighted if you set
Maxim Kim26de90c2024-06-18 19:32:39 +0200163the 'hlsearch' option. This can be suspended with the |:nohlsearch| command
164or auto suspended with nohlsearch plugin. See |nohlsearch-install|.
165
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166
Bram Moolenaar9dfa3132019-05-04 21:08:40 +0200167When 'shortmess' does not include the "S" flag, Vim will automatically show an
h-east624bb832024-11-09 18:37:32 +0100168index, on which the cursor is. This can look like this: >
Bram Moolenaar9dfa3132019-05-04 21:08:40 +0200169
170 [1/5] Cursor is on first of 5 matches.
171 [1/>99] Cursor is on first of more than 99 matches.
172 [>99/>99] Cursor is after 99 match of more than 99 matches.
173 [?/??] Unknown how many matches exists, generating the
174 statistics was aborted because of search timeout.
175
176Note: the count does not take offset into account.
177
Bram Moolenaar15146672011-10-20 22:22:38 +0200178When no match is found you get the error: *E486* Pattern not found
Bram Moolenaar1588bc82022-03-08 21:35:07 +0000179Note that for the `:global` command, when used in legacy script, you get a
180normal message "Pattern not found", for Vi compatibility.
181In |Vim9| script you get E486 for "pattern not found" or *E538* when the pattern
182matches in every line with `:vglobal`.
183For the |:s| command the "e" flag can be used to avoid the error message
184|:s_flags|.
Bram Moolenaar15146672011-10-20 22:22:38 +0200185
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186 *search-offset* *{offset}*
187These commands search for the specified pattern. With "/" and "?" an
188additional offset may be given. There are two types of offsets: line offsets
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200189and character offsets.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190
191The offset gives the cursor position relative to the found match:
192 [num] [num] lines downwards, in column 1
193 +[num] [num] lines downwards, in column 1
194 -[num] [num] lines upwards, in column 1
195 e[+num] [num] characters to the right of the end of the match
196 e[-num] [num] characters to the left of the end of the match
197 s[+num] [num] characters to the right of the start of the match
198 s[-num] [num] characters to the left of the start of the match
199 b[+num] [num] identical to s[+num] above (mnemonic: begin)
200 b[-num] [num] identical to s[-num] above (mnemonic: begin)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000201 ;{pattern} perform another search, see |//;|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202
203If a '-' or '+' is given but [num] is omitted, a count of one will be used.
204When including an offset with 'e', the search becomes inclusive (the
205character the cursor lands on is included in operations).
206
207Examples:
208
209pattern cursor position ~
210/test/+1 one line below "test", in column 1
211/test/e on the last t of "test"
212/test/s+2 on the 's' of "test"
213/test/b-3 three characters before "test"
214
215If one of these commands is used after an operator, the characters between
216the cursor position before and after the search is affected. However, if a
217line offset is given, the whole lines between the two cursor positions are
218affected.
219
220An example of how to search for matches with a pattern and change the match
221with another word: >
222 /foo<CR> find "foo"
Bram Moolenaar92dff182014-02-11 19:15:50 +0100223 c//e<CR> change until end of match
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224 bar<Esc> type replacement
225 //<CR> go to start of next match
Bram Moolenaar92dff182014-02-11 19:15:50 +0100226 c//e<CR> change until end of match
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227 beep<Esc> type another replacement
228 etc.
229<
230 *//;* *E386*
231A very special offset is ';' followed by another search command. For example: >
232
233 /test 1/;/test
234 /test.*/+1;?ing?
235
236The first one first finds the next occurrence of "test 1", and then the first
237occurrence of "test" after that.
238
239This is like executing two search commands after each other, except that:
240- It can be used as a single motion command after an operator.
241- The direction for a following "n" or "N" command comes from the first
242 search command.
243- When an error occurs the cursor is not moved at all.
244
245 *last-pattern*
246The last used pattern and offset are remembered. They can be used to repeat
247the search, possibly in another direction or with another count. Note that
Bram Moolenaar9faec4e2021-02-27 16:38:07 +0100248two patterns are remembered: One for "normal" search commands and one for the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249substitute command ":s". Each time an empty pattern is given, the previously
Bram Moolenaar662db672011-03-22 14:05:35 +0100250used pattern is used. However, if there is no previous search command, a
251previous substitute pattern is used, if possible.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252
253The 'magic' option sticks with the last used pattern. If you change 'magic',
254this will not change how the last used pattern will be interpreted.
255The 'ignorecase' option does not do this. When 'ignorecase' is changed, it
256will result in the pattern to match other text.
257
258All matches for the last used search pattern will be highlighted if you set
259the 'hlsearch' option.
260
261To clear the last used search pattern: >
262 :let @/ = ""
263This will not set the pattern to an empty string, because that would match
264everywhere. The pattern is really cleared, like when starting Vim.
265
Bram Moolenaar8f999f12005-01-25 22:12:55 +0000266The search usually skips matches that don't move the cursor. Whether the next
Bram Moolenaar071d4272004-06-13 20:20:40 +0000267match is found at the next character or after the skipped match depends on the
268'c' flag in 'cpoptions'. See |cpo-c|.
269 with 'c' flag: "/..." advances 1 to 3 characters
270 without 'c' flag: "/..." advances 1 character
271The unpredictability with the 'c' flag is caused by starting the search in the
272first column, skipping matches until one is found past the cursor position.
273
Bram Moolenaar8f999f12005-01-25 22:12:55 +0000274When searching backwards, searching starts at the start of the line, using the
275'c' flag in 'cpoptions' as described above. Then the last match before the
276cursor position is used.
277
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278In Vi the ":tag" command sets the last search pattern when the tag is searched
279for. In Vim this is not done, the previous search pattern is still remembered,
280unless the 't' flag is present in 'cpoptions'. The search pattern is always
281put in the search history.
282
283If the 'wrapscan' option is on (which is the default), searches wrap around
284the end of the buffer. If 'wrapscan' is not set, the backward search stops
285at the beginning and the forward search stops at the end of the buffer. If
286'wrapscan' is set and the pattern was not found the error message "pattern
287not found" is given, and the cursor will not be moved. If 'wrapscan' is not
288set the message becomes "search hit BOTTOM without match" when searching
289forward, or "search hit TOP without match" when searching backward. If
290wrapscan is set and the search wraps around the end of the file the message
291"search hit TOP, continuing at BOTTOM" or "search hit BOTTOM, continuing at
292TOP" is given when searching backwards or forwards respectively. This can be
293switched off by setting the 's' flag in the 'shortmess' option. The highlight
294method 'w' is used for this message (default: standout).
295
296 *search-range*
Bram Moolenaar4770d092006-01-12 23:22:24 +0000297You can limit the search command "/" to a certain range of lines by including
298\%>l items. For example, to match the word "limit" below line 199 and above
299line 300: >
300 /\%>199l\%<300llimit
301Also see |/\%>l|.
302
303Another way is to use the ":substitute" command with the 'c' flag. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304 :.,300s/Pattern//gc
305This command will search from the cursor position until line 300 for
306"Pattern". At the match, you will be asked to type a character. Type 'q' to
307stop at this match, type 'n' to find the next match.
308
309The "*", "#", "g*" and "g#" commands look for a word near the cursor in this
310order, the first one that is found is used:
311- The keyword currently under the cursor.
312- The first keyword to the right of the cursor, in the same line.
313- The WORD currently under the cursor.
314- The first WORD to the right of the cursor, in the same line.
315The keyword may only contain letters and characters in 'iskeyword'.
316The WORD may contain any non-blanks (<Tab>s and/or <Space>s).
317Note that if you type with ten fingers, the characters are easy to remember:
318the "#" is under your left hand middle finger (search to the left and up) and
319the "*" is under your right hand middle finger (search to the right and down).
320(this depends on your keyboard layout though).
321
Bram Moolenaara9604e62018-07-21 05:56:22 +0200322 *E956*
323In very rare cases a regular expression is used recursively. This can happen
Bram Moolenaarf0d58ef2018-11-16 16:13:44 +0100324when executing a pattern takes a long time and when checking for messages on
Bram Moolenaara9604e62018-07-21 05:56:22 +0200325channels a callback is invoked that also uses a pattern or an autocommand is
326triggered. In most cases this should be fine, but if a pattern is in use when
327it's used again it fails. Usually this means there is something wrong with
328the pattern.
329
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330==============================================================================
3312. The definition of a pattern *search-pattern* *pattern* *[pattern]*
332 *regular-expression* *regexp* *Pattern*
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000333 *E383* *E476*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334
335For starters, read chapter 27 of the user manual |usr_27.txt|.
336
337 */bar* */\bar* */pattern*
3381. A pattern is one or more branches, separated by "\|". It matches anything
339 that matches one of the branches. Example: "foo\|beep" matches "foo" and
340 matches "beep". If more than one branch matches, the first one is used.
341
342 pattern ::= branch
343 or branch \| branch
344 or branch \| branch \| branch
345 etc.
346
347 */branch* */\&*
3482. A branch is one or more concats, separated by "\&". It matches the last
349 concat, but only if all the preceding concats also match at the same
350 position. Examples:
351 "foobeep\&..." matches "foo" in "foobeep".
352 ".*Peter\&.*Bob" matches in a line containing both "Peter" and "Bob"
353
354 branch ::= concat
355 or concat \& concat
356 or concat \& concat \& concat
357 etc.
358
359 */concat*
3603. A concat is one or more pieces, concatenated. It matches a match for the
361 first piece, followed by a match for the second piece, etc. Example:
362 "f[0-9]b", first matches "f", then a digit and then "b".
363
364 concat ::= piece
365 or piece piece
366 or piece piece piece
367 etc.
368
369 */piece*
3704. A piece is an atom, possibly followed by a multi, an indication of how many
371 times the atom can be matched. Example: "a*" matches any sequence of "a"
372 characters: "", "a", "aa", etc. See |/multi|.
373
374 piece ::= atom
375 or atom multi
376
377 */atom*
3785. An atom can be one of a long list of items. Many atoms match one character
379 in the text. It is often an ordinary character or a character class.
Bram Moolenaar1b884a02020-12-10 21:11:27 +0100380 Parentheses can be used to make a pattern into an atom. The "\z(\)"
381 construct is only for syntax highlighting.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382
383 atom ::= ordinary-atom |/ordinary-atom|
384 or \( pattern \) |/\(|
385 or \%( pattern \) |/\%(|
386 or \z( pattern \) |/\z(|
387
388
Bram Moolenaar913df812013-07-06 15:44:11 +0200389 */\%#=* *two-engines* *NFA*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200390Vim includes two regexp engines:
3911. An old, backtracking engine that supports everything.
Bram Moolenaar220adb12016-09-12 12:17:26 +02003922. A new, NFA engine that works much faster on some patterns, possibly slower
393 on some patterns.
Christian Brabandt360da402022-05-18 15:04:02 +0100394 *E1281*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200395Vim will automatically select the right engine for you. However, if you run
396into a problem or want to specifically select one engine or the other, you can
397prepend one of the following to the pattern:
398
399 \%#=0 Force automatic selection. Only has an effect when
400 'regexpengine' has been set to a non-zero value.
401 \%#=1 Force using the old engine.
402 \%#=2 Force using the NFA engine.
403
404You can also use the 'regexpengine' option to change the default.
405
406 *E864* *E868* *E874* *E875* *E876* *E877* *E878*
407If selecting the NFA engine and it runs into something that is not implemented
408the pattern will not match. This is only useful when debugging Vim.
409
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410==============================================================================
Bram Moolenaareb3593b2006-04-22 22:33:57 +00004113. Magic */magic*
412
Bram Moolenaar7e6a5152021-01-02 16:39:53 +0100413Some characters in the pattern, such as letters, are taken literally. They
414match exactly the same character in the text. When preceded with a backslash
415however, these characters may get a special meaning. For example, "a" matches
416the letter "a", while "\a" matches any alphabetic character.
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000417
418Other characters have a special meaning without a backslash. They need to be
Bram Moolenaar7e6a5152021-01-02 16:39:53 +0100419preceded with a backslash to match literally. For example "." matches any
420character while "\." matches a dot.
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000421
422If a character is taken literally or not depends on the 'magic' option and the
Bram Moolenaar7e6a5152021-01-02 16:39:53 +0100423items in the pattern mentioned next. The 'magic' option should always be set,
424but it can be switched off for Vi compatibility. We mention the effect of
425'nomagic' here for completeness, but we recommend against using that.
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000426 */\m* */\M*
427Use of "\m" makes the pattern after it be interpreted as if 'magic' is set,
428ignoring the actual value of the 'magic' option.
429Use of "\M" makes the pattern after it be interpreted as if 'nomagic' is used.
430 */\v* */\V*
Bram Moolenaarc8c88492018-12-27 23:59:26 +0100431Use of "\v" means that after it, all ASCII characters except '0'-'9', 'a'-'z',
432'A'-'Z' and '_' have special meaning: "very magic"
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000433
Bram Moolenaar7e6a5152021-01-02 16:39:53 +0100434Use of "\V" means that after it, only a backslash and the terminating
435character (usually / or ?) have special meaning: "very nomagic"
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000436
437Examples:
438after: \v \m \M \V matches ~
439 'magic' 'nomagic'
Bram Moolenaar7e6a5152021-01-02 16:39:53 +0100440 a a a a literal 'a'
441 \a \a \a \a any alphabetic character
442 . . \. \. any character
443 \. \. . . literal dot
444 $ $ $ \$ end-of-line
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000445 * * \* \* any number of the previous atom
Bram Moolenaar256972a2015-12-29 19:10:25 +0100446 ~ ~ \~ \~ latest substitute string
Bram Moolenaar7e6a5152021-01-02 16:39:53 +0100447 () \(\) \(\) \(\) group as an atom
448 | \| \| \| nothing: separates alternatives
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000449 \\ \\ \\ \\ literal backslash
Bram Moolenaar7e6a5152021-01-02 16:39:53 +0100450 \{ { { { literal curly brace
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000451
452{only Vim supports \m, \M, \v and \V}
453
Bram Moolenaar7e6a5152021-01-02 16:39:53 +0100454If you want to you can make a pattern immune to the 'magic' option being set
455or not by putting "\m" or "\M" at the start of the pattern.
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000456
457==============================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584. Overview of pattern items *pattern-overview*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200459 *E865* *E866* *E867* *E869*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460
461Overview of multi items. */multi* *E61* *E62*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200462More explanation and examples below, follow the links. *E64* *E871*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000463
464 multi ~
465 'magic' 'nomagic' matches of the preceding atom ~
466|/star| * \* 0 or more as many as possible
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200467|/\+| \+ \+ 1 or more as many as possible
468|/\=| \= \= 0 or 1 as many as possible
469|/\?| \? \? 0 or 1 as many as possible
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200471|/\{| \{n,m} \{n,m} n to m as many as possible
472 \{n} \{n} n exactly
473 \{n,} \{n,} at least n as many as possible
474 \{,m} \{,m} 0 to m as many as possible
475 \{} \{} 0 or more as many as possible (same as *)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200477|/\{-| \{-n,m} \{-n,m} n to m as few as possible
478 \{-n} \{-n} n exactly
479 \{-n,} \{-n,} at least n as few as possible
480 \{-,m} \{-,m} 0 to m as few as possible
481 \{-} \{-} 0 or more as few as possible
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482
483 *E59*
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200484|/\@>| \@> \@> 1, like matching a whole pattern
485|/\@=| \@= \@= nothing, requires a match |/zero-width|
486|/\@!| \@! \@! nothing, requires NO match |/zero-width|
487|/\@<=| \@<= \@<= nothing, requires a match behind |/zero-width|
488|/\@<!| \@<! \@<! nothing, requires NO match behind |/zero-width|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489
490
491Overview of ordinary atoms. */ordinary-atom*
492More explanation and examples below, follow the links.
493
494 ordinary atom ~
495 magic nomagic matches ~
496|/^| ^ ^ start-of-line (at start of pattern) |/zero-width|
497|/\^| \^ \^ literal '^'
498|/\_^| \_^ \_^ start-of-line (used anywhere) |/zero-width|
499|/$| $ $ end-of-line (at end of pattern) |/zero-width|
500|/\$| \$ \$ literal '$'
501|/\_$| \_$ \_$ end-of-line (used anywhere) |/zero-width|
502|/.| . \. any single character (not an end-of-line)
503|/\_.| \_. \_. any single character or end-of-line
504|/\<| \< \< beginning of a word |/zero-width|
505|/\>| \> \> end of a word |/zero-width|
506|/\zs| \zs \zs anything, sets start of match
507|/\ze| \ze \ze anything, sets end of match
508|/\%^| \%^ \%^ beginning of file |/zero-width| *E71*
509|/\%$| \%$ \%$ end of file |/zero-width|
Bram Moolenaar33aec762006-01-22 23:30:12 +0000510|/\%V| \%V \%V inside Visual area |/zero-width|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511|/\%#| \%# \%# cursor position |/zero-width|
Bram Moolenaar33aec762006-01-22 23:30:12 +0000512|/\%'m| \%'m \%'m mark m position |/zero-width|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513|/\%l| \%23l \%23l in line 23 |/zero-width|
514|/\%c| \%23c \%23c in column 23 |/zero-width|
515|/\%v| \%23v \%23v in virtual column 23 |/zero-width|
516
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200517Character classes: */character-classes*
Bram Moolenaar256972a2015-12-29 19:10:25 +0100518 magic nomagic matches ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519|/\i| \i \i identifier character (see 'isident' option)
520|/\I| \I \I like "\i", but excluding digits
521|/\k| \k \k keyword character (see 'iskeyword' option)
522|/\K| \K \K like "\k", but excluding digits
523|/\f| \f \f file name character (see 'isfname' option)
524|/\F| \F \F like "\f", but excluding digits
525|/\p| \p \p printable character (see 'isprint' option)
526|/\P| \P \P like "\p", but excluding digits
527|/\s| \s \s whitespace character: <Space> and <Tab>
528|/\S| \S \S non-whitespace character; opposite of \s
529|/\d| \d \d digit: [0-9]
530|/\D| \D \D non-digit: [^0-9]
531|/\x| \x \x hex digit: [0-9A-Fa-f]
532|/\X| \X \X non-hex digit: [^0-9A-Fa-f]
533|/\o| \o \o octal digit: [0-7]
534|/\O| \O \O non-octal digit: [^0-7]
535|/\w| \w \w word character: [0-9A-Za-z_]
536|/\W| \W \W non-word character: [^0-9A-Za-z_]
537|/\h| \h \h head of word character: [A-Za-z_]
538|/\H| \H \H non-head of word character: [^A-Za-z_]
539|/\a| \a \a alphabetic character: [A-Za-z]
540|/\A| \A \A non-alphabetic character: [^A-Za-z]
541|/\l| \l \l lowercase character: [a-z]
542|/\L| \L \L non-lowercase character: [^a-z]
543|/\u| \u \u uppercase character: [A-Z]
544|/\U| \U \U non-uppercase character [^A-Z]
545|/\_| \_x \_x where x is any of the characters above: character
546 class with end-of-line included
547(end of character classes)
548
Bram Moolenaar256972a2015-12-29 19:10:25 +0100549 magic nomagic matches ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550|/\e| \e \e <Esc>
551|/\t| \t \t <Tab>
552|/\r| \r \r <CR>
553|/\b| \b \b <BS>
554|/\n| \n \n end-of-line
555|/~| ~ \~ last given substitute string
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200556|/\1| \1 \1 same string as matched by first \(\)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557|/\2| \2 \2 Like "\1", but uses second \(\)
558 ...
559|/\9| \9 \9 Like "\1", but uses ninth \(\)
560 *E68*
561|/\z1| \z1 \z1 only for syntax highlighting, see |:syn-ext-match|
562 ...
563|/\z1| \z9 \z9 only for syntax highlighting, see |:syn-ext-match|
564
565 x x a character with no special meaning matches itself
566
567|/[]| [] \[] any character specified inside the []
Bram Moolenaar00154502013-02-13 16:15:55 +0100568|/\%[]| \%[] \%[] a sequence of optionally matched atoms
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000570|/\c| \c \c ignore case, do not use the 'ignorecase' option
571|/\C| \C \C match case, do not use the 'ignorecase' option
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200572|/\Z| \Z \Z ignore differences in Unicode "combining characters".
573 Useful when searching voweled Hebrew or Arabic text.
574
Bram Moolenaar256972a2015-12-29 19:10:25 +0100575 magic nomagic matches ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576|/\m| \m \m 'magic' on for the following chars in the pattern
577|/\M| \M \M 'magic' off for the following chars in the pattern
578|/\v| \v \v the following chars in the pattern are "very magic"
579|/\V| \V \V the following chars in the pattern are "very nomagic"
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200580|/\%#=| \%#=1 \%#=1 select regexp engine |/zero-width|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100582|/\%d| \%d \%d match specified decimal character (eg \%d123)
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000583|/\%x| \%x \%x match specified hex character (eg \%x2a)
584|/\%o| \%o \%o match specified octal character (eg \%o040)
585|/\%u| \%u \%u match specified multibyte character (eg \%u20ac)
586|/\%U| \%U \%U match specified large multibyte character (eg
587 \%U12345678)
Bram Moolenaar8df5acf2014-05-13 19:37:29 +0200588|/\%C| \%C \%C match any composing characters
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589
590Example matches ~
591\<\I\i* or
592\<\h\w*
593\<[a-zA-Z_][a-zA-Z0-9_]*
594 An identifier (e.g., in a C program).
595
596\(\.$\|\. \) A period followed by <EOL> or a space.
597
598[.!?][])"']*\($\|[ ]\) A search pattern that finds the end of a sentence,
599 with almost the same definition as the ")" command.
600
601cat\Z Both "cat" and "càt" ("a" followed by 0x0300)
602 Does not match "càt" (character 0x00e0), even
603 though it may look the same.
604
605
606==============================================================================
Bram Moolenaar071d4272004-06-13 20:20:40 +00006075. Multi items *pattern-multi-items*
608
609An atom can be followed by an indication of how many times the atom can be
610matched and in what way. This is called a multi. See |/multi| for an
611overview.
612
Bram Moolenaaraa3b15d2016-04-21 08:53:19 +0200613 */star* */\star*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614* (use \* when 'magic' is not set)
615 Matches 0 or more of the preceding atom, as many as possible.
616 Example 'nomagic' matches ~
617 a* a\* "", "a", "aa", "aaa", etc.
618 .* \.\* anything, also an empty string, no end-of-line
619 \_.* \_.\* everything up to the end of the buffer
620 \_.*END \_.\*END everything up to and including the last "END"
621 in the buffer
622
623 Exception: When "*" is used at the start of the pattern or just after
624 "^" it matches the star character.
625
626 Be aware that repeating "\_." can match a lot of text and take a long
627 time. For example, "\_.*END" matches all text from the current
628 position to the last occurrence of "END" in the file. Since the "*"
629 will match as many as possible, this first skips over all lines until
630 the end of the file and then tries matching "END", backing up one
631 character at a time.
632
Bram Moolenaaraa3b15d2016-04-21 08:53:19 +0200633 */\+*
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200634\+ Matches 1 or more of the preceding atom, as many as possible.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635 Example matches ~
636 ^.\+$ any non-empty line
637 \s\+ white space of at least one character
638
639 */\=*
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200640\= Matches 0 or 1 of the preceding atom, as many as possible.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641 Example matches ~
642 foo\= "fo" and "foo"
643
644 */\?*
645\? Just like \=. Cannot be used when searching backwards with the "?"
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200646 command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647
Bram Moolenaaraa3b15d2016-04-21 08:53:19 +0200648 */\{* *E60* *E554* *E870*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649\{n,m} Matches n to m of the preceding atom, as many as possible
650\{n} Matches n of the preceding atom
651\{n,} Matches at least n of the preceding atom, as many as possible
652\{,m} Matches 0 to m of the preceding atom, as many as possible
653\{} Matches 0 or more of the preceding atom, as many as possible (like *)
654 */\{-*
655\{-n,m} matches n to m of the preceding atom, as few as possible
656\{-n} matches n of the preceding atom
657\{-n,} matches at least n of the preceding atom, as few as possible
658\{-,m} matches 0 to m of the preceding atom, as few as possible
659\{-} matches 0 or more of the preceding atom, as few as possible
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000661 n and m are positive decimal numbers or zero
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000662 *non-greedy*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663 If a "-" appears immediately after the "{", then a shortest match
664 first algorithm is used (see example below). In particular, "\{-}" is
665 the same as "*" but uses the shortest match first algorithm. BUT: A
666 match that starts earlier is preferred over a shorter match: "a\{-}b"
667 matches "aaab" in "xaaab".
668
669 Example matches ~
670 ab\{2,3}c "abbc" or "abbbc"
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000671 a\{5} "aaaaa"
672 ab\{2,}c "abbc", "abbbc", "abbbbc", etc.
673 ab\{,3}c "ac", "abc", "abbc" or "abbbc"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 a[bc]\{3}d "abbbd", "abbcd", "acbcd", "acccd", etc.
675 a\(bc\)\{1,2}d "abcd" or "abcbcd"
676 a[bc]\{-}[cd] "abc" in "abcd"
677 a[bc]*[cd] "abcd" in "abcd"
678
679 The } may optionally be preceded with a backslash: \{n,m\}.
680
681 */\@=*
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200682\@= Matches the preceding atom with zero width.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683 Like "(?=pattern)" in Perl.
684 Example matches ~
685 foo\(bar\)\@= "foo" in "foobar"
686 foo\(bar\)\@=foo nothing
687 */zero-width*
688 When using "\@=" (or "^", "$", "\<", "\>") no characters are included
689 in the match. These items are only used to check if a match can be
690 made. This can be tricky, because a match with following items will
691 be done in the same position. The last example above will not match
692 "foobarfoo", because it tries match "foo" in the same position where
693 "bar" matched.
694
695 Note that using "\&" works the same as using "\@=": "foo\&.." is the
696 same as "\(foo\)\@=..". But using "\&" is easier, you don't need the
Bram Moolenaar1b884a02020-12-10 21:11:27 +0100697 parentheses.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698
699
700 */\@!*
701\@! Matches with zero width if the preceding atom does NOT match at the
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200702 current position. |/zero-width|
Bram Moolenaar1aeaf8c2012-05-18 13:46:39 +0200703 Like "(?!pattern)" in Perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704 Example matches ~
705 foo\(bar\)\@! any "foo" not followed by "bar"
Bram Moolenaar1aeaf8c2012-05-18 13:46:39 +0200706 a.\{-}p\@! "a", "ap", "app", "appp", etc. not immediately
Bram Moolenaar251e1912011-06-19 05:09:16 +0200707 followed by a "p"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 if \(\(then\)\@!.\)*$ "if " not followed by "then"
709
710 Using "\@!" is tricky, because there are many places where a pattern
711 does not match. "a.*p\@!" will match from an "a" to the end of the
712 line, because ".*" can match all characters in the line and the "p"
713 doesn't match at the end of the line. "a.\{-}p\@!" will match any
Bram Moolenaar1aeaf8c2012-05-18 13:46:39 +0200714 "a", "ap", "app", etc. that isn't followed by a "p", because the "."
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715 can match a "p" and "p\@!" doesn't match after that.
716
717 You can't use "\@!" to look for a non-match before the matching
718 position: "\(foo\)\@!bar" will match "bar" in "foobar", because at the
719 position where "bar" matches, "foo" does not match. To avoid matching
720 "foobar" you could use "\(foo\)\@!...bar", but that doesn't match a
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000721 bar at the start of a line. Use "\(foo\)\@<!bar".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722
Bram Moolenaar8e5af3e2011-04-28 19:02:44 +0200723 Useful example: to find "foo" in a line that does not contain "bar": >
724 /^\%(.*bar\)\@!.*\zsfoo
725< This pattern first checks that there is not a single position in the
726 line where "bar" matches. If ".*bar" matches somewhere the \@! will
727 reject the pattern. When there is no match any "foo" will be found.
728 The "\zs" is to have the match start just before "foo".
729
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730 */\@<=*
731\@<= Matches with zero width if the preceding atom matches just before what
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200732 follows. |/zero-width|
Bram Moolenaar1aeaf8c2012-05-18 13:46:39 +0200733 Like "(?<=pattern)" in Perl, but Vim allows non-fixed-width patterns.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 Example matches ~
735 \(an\_s\+\)\@<=file "file" after "an" and white space or an
736 end-of-line
737 For speed it's often much better to avoid this multi. Try using "\zs"
738 instead |/\zs|. To match the same as the above example:
739 an\_s\+\zsfile
Bram Moolenaar543b7ef2013-06-01 14:50:56 +0200740 At least set a limit for the look-behind, see below.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741
742 "\@<=" and "\@<!" check for matches just before what follows.
743 Theoretically these matches could start anywhere before this position.
744 But to limit the time needed, only the line where what follows matches
745 is searched, and one line before that (if there is one). This should
746 be sufficient to match most things and not be too slow.
Bram Moolenaarfb539272014-08-22 19:21:47 +0200747
748 In the old regexp engine the part of the pattern after "\@<=" and
749 "\@<!" are checked for a match first, thus things like "\1" don't work
750 to reference \(\) inside the preceding atom. It does work the other
751 way around:
752 Bad example matches ~
753 \%#=1\1\@<=,\([a-z]\+\) ",abc" in "abc,abc"
754
755 However, the new regexp engine works differently, it is better to not
756 rely on this behavior, do not use \@<= if it can be avoided:
757 Example matches ~
758 \([a-z]\+\)\zs,\1 ",abc" in "abc,abc"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759
Bram Moolenaar543b7ef2013-06-01 14:50:56 +0200760\@123<=
h-east624bb832024-11-09 18:37:32 +0100761 Like "\@<=" but only look back 123 bytes. This avoids trying lots
Bram Moolenaar543b7ef2013-06-01 14:50:56 +0200762 of matches that are known to fail and make executing the pattern very
763 slow. Example, check if there is a "<" just before "span":
764 /<\@1<=span
765 This will try matching "<" only one byte before "span", which is the
766 only place that works anyway.
767 After crossing a line boundary, the limit is relative to the end of
768 the line. Thus the characters at the start of the line with the match
769 are not counted (this is just to keep it simple).
770 The number zero is the same as no limit.
771
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 */\@<!*
773\@<! Matches with zero width if the preceding atom does NOT match just
774 before what follows. Thus this matches if there is no position in the
775 current or previous line where the atom matches such that it ends just
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200776 before what follows. |/zero-width|
Bram Moolenaar1aeaf8c2012-05-18 13:46:39 +0200777 Like "(?<!pattern)" in Perl, but Vim allows non-fixed-width patterns.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778 The match with the preceding atom is made to end just before the match
779 with what follows, thus an atom that ends in ".*" will work.
780 Warning: This can be slow (because many positions need to be checked
Bram Moolenaar543b7ef2013-06-01 14:50:56 +0200781 for a match). Use a limit if you can, see below.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 Example matches ~
783 \(foo\)\@<!bar any "bar" that's not in "foobar"
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000784 \(\/\/.*\)\@<!in "in" which is not after "//"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785
Bram Moolenaar543b7ef2013-06-01 14:50:56 +0200786\@123<!
h-east624bb832024-11-09 18:37:32 +0100787 Like "\@<!" but only look back 123 bytes. This avoids trying lots of
Bram Moolenaar543b7ef2013-06-01 14:50:56 +0200788 matches that are known to fail and make executing the pattern very
789 slow.
790
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791 */\@>*
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200792\@> Matches the preceding atom like matching a whole pattern.
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000793 Like "(?>pattern)" in Perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 Example matches ~
795 \(a*\)\@>a nothing (the "a*" takes all the "a"'s, there can't be
796 another one following)
797
798 This matches the preceding atom as if it was a pattern by itself. If
799 it doesn't match, there is no retry with shorter sub-matches or
800 anything. Observe this difference: "a*b" and "a*ab" both match
801 "aaab", but in the second case the "a*" matches only the first two
802 "a"s. "\(a*\)\@>ab" will not match "aaab", because the "a*" matches
803 the "aaa" (as many "a"s as possible), thus the "ab" can't match.
804
805
806==============================================================================
8076. Ordinary atoms *pattern-atoms*
808
809An ordinary atom can be:
810
811 */^*
812^ At beginning of pattern or after "\|", "\(", "\%(" or "\n": matches
813 start-of-line; at other positions, matches literal '^'. |/zero-width|
814 Example matches ~
815 ^beep( the start of the C function "beep" (probably).
816
817 */\^*
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200818\^ Matches literal '^'. Can be used at any position in the pattern, but
819 not inside [].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820
821 */\_^*
822\_^ Matches start-of-line. |/zero-width| Can be used at any position in
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200823 the pattern, but not inside [].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 Example matches ~
825 \_s*\_^foo white space and blank lines and then "foo" at
826 start-of-line
827
828 */$*
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000829$ At end of pattern or in front of "\|", "\)" or "\n" ('magic' on):
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 matches end-of-line <EOL>; at other positions, matches literal '$'.
831 |/zero-width|
832
833 */\$*
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200834\$ Matches literal '$'. Can be used at any position in the pattern, but
835 not inside [].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836
837 */\_$*
838\_$ Matches end-of-line. |/zero-width| Can be used at any position in the
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200839 pattern, but not inside []. Note that "a\_$b" never matches, since
840 "b" cannot match an end-of-line. Use "a\nb" instead |/\n|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841 Example matches ~
842 foo\_$\_s* "foo" at end-of-line and following white space and
843 blank lines
844
845. (with 'nomagic': \.) */.* */\.*
846 Matches any single character, but not an end-of-line.
847
848 */\_.*
849\_. Matches any single character or end-of-line.
850 Careful: "\_.*" matches all text to the end of the buffer!
851
852 */\<*
853\< Matches the beginning of a word: The next char is the first char of a
854 word. The 'iskeyword' option specifies what is a word character.
855 |/zero-width|
856
857 */\>*
858\> Matches the end of a word: The previous char is the last char of a
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000859 word. The 'iskeyword' option specifies what is a word character.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 |/zero-width|
861
862 */\zs*
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200863\zs Matches at any position, but not inside [], and sets the start of the
864 match there: The next char is the first char of the whole match.
865 |/zero-width|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866 Example: >
867 /^\s*\zsif
868< matches an "if" at the start of a line, ignoring white space.
869 Can be used multiple times, the last one encountered in a matching
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000870 branch is used. Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871 /\(.\{-}\zsFab\)\{3}
872< Finds the third occurrence of "Fab".
Bram Moolenaar34401cc2014-08-29 15:12:19 +0200873 This cannot be followed by a multi. *E888*
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200874 {not available when compiled without the |+syntax| feature}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 */\ze*
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200876\ze Matches at any position, but not inside [], and sets the end of the
877 match there: The previous char is the last char of the whole match.
878 |/zero-width|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879 Can be used multiple times, the last one encountered in a matching
880 branch is used.
881 Example: "end\ze\(if\|for\)" matches the "end" in "endif" and
882 "endfor".
Bram Moolenaar6e932462014-09-09 18:48:09 +0200883 This cannot be followed by a multi. |E888|
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200884 {not available when compiled without the |+syntax| feature}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885
886 */\%^* *start-of-file*
887\%^ Matches start of the file. When matching with a string, matches the
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200888 start of the string.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 For example, to find the first "VIM" in a file: >
890 /\%^\_.\{-}\zsVIM
891<
892 */\%$* *end-of-file*
893\%$ Matches end of the file. When matching with a string, matches the
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200894 end of the string.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 Note that this does NOT find the last "VIM" in a file: >
896 /VIM\_.\{-}\%$
897< It will find the next VIM, because the part after it will always
898 match. This one will find the last "VIM" in the file: >
899 /VIM\ze\(\(VIM\)\@!\_.\)*\%$
900< This uses |/\@!| to ascertain that "VIM" does NOT match in any
901 position after the first "VIM".
902 Searching from the end of the file backwards is easier!
903
Bram Moolenaar33aec762006-01-22 23:30:12 +0000904 */\%V*
905\%V Match inside the Visual area. When Visual mode has already been
906 stopped match in the area that |gv| would reselect.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100907 This is a |/zero-width| match. To make sure the whole pattern is
Bram Moolenaar214641f2017-03-05 17:04:09 +0100908 inside the Visual area put it at the start and just before the end of
909 the pattern, e.g.: >
910 /\%Vfoo.*ba\%Vr
h-east624bb832024-11-09 18:37:32 +0100911< This also works if only "foo bar" was Visually selected. This: >
Bram Moolenaar036986f2017-03-16 17:41:02 +0100912 /\%Vfoo.*bar\%V
Bram Moolenaar214641f2017-03-05 17:04:09 +0100913< would match "foo bar" if the Visual selection continues after the "r".
914 Only works for the current buffer.
Bram Moolenaar33aec762006-01-22 23:30:12 +0000915
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 */\%#* *cursor-position*
917\%# Matches with the cursor position. Only works when matching in a
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200918 buffer displayed in a window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919 WARNING: When the cursor is moved after the pattern was used, the
920 result becomes invalid. Vim doesn't automatically update the matches.
921 This is especially relevant for syntax highlighting and 'hlsearch'.
922 In other words: When the cursor moves the display isn't updated for
923 this change. An update is done for lines which are changed (the whole
924 line is updated) or when using the |CTRL-L| command (the whole screen
925 is updated). Example, to highlight the word under the cursor: >
926 /\k*\%#\k*
927< When 'hlsearch' is set and you move the cursor around and make changes
928 this will clearly show when the match is updated or not.
929
Bram Moolenaar33aec762006-01-22 23:30:12 +0000930 */\%'m* */\%<'m* */\%>'m*
931\%'m Matches with the position of mark m.
932\%<'m Matches before the position of mark m.
933\%>'m Matches after the position of mark m.
934 Example, to highlight the text from mark 's to 'e: >
935 /.\%>'s.*\%<'e..
936< Note that two dots are required to include mark 'e in the match. That
937 is because "\%<'e" matches at the character before the 'e mark, and
938 since it's a |/zero-width| match it doesn't include that character.
Bram Moolenaar33aec762006-01-22 23:30:12 +0000939 WARNING: When the mark is moved after the pattern was used, the result
940 becomes invalid. Vim doesn't automatically update the matches.
Bram Moolenaar1ef15e32006-02-01 21:56:25 +0000941 Similar to moving the cursor for "\%#" |/\%#|.
Bram Moolenaar33aec762006-01-22 23:30:12 +0000942
Bram Moolenaar2ecbe532022-07-29 21:36:21 +0100943 */\%l* */\%>l* */\%<l* *E951* *E1204* *E1273*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944\%23l Matches in a specific line.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000945\%<23l Matches above a specific line (lower line number).
946\%>23l Matches below a specific line (higher line number).
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000947\%.l Matches at the cursor line.
948\%<.l Matches above the cursor line.
949\%>.l Matches below the cursor line.
Bram Moolenaar22863042021-10-16 15:23:36 +0100950 These six can be used to match specific lines in a buffer. The "23"
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200951 can be any line number. The first line is 1.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952 WARNING: When inserting or deleting lines Vim does not automatically
953 update the matches. This means Syntax highlighting quickly becomes
Bram Moolenaar53f7fcc2021-07-28 20:10:16 +0200954 wrong. Also when referring to the cursor position (".") and
Bram Moolenaar04db26b2021-07-05 20:15:23 +0200955 the cursor moves the display isn't updated for this change. An update
956 is done when using the |CTRL-L| command (the whole screen is updated).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 Example, to highlight the line where the cursor currently is: >
Bram Moolenaar04db26b2021-07-05 20:15:23 +0200958 :exe '/\%' . line(".") . 'l'
959< Alternatively use: >
960 /\%.l
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961< When 'hlsearch' is set and you move the cursor around and make changes
962 this will clearly show when the match is updated or not.
963
964 */\%c* */\%>c* */\%<c*
965\%23c Matches in a specific column.
966\%<23c Matches before a specific column.
967\%>23c Matches after a specific column.
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000968\%.c Matches at the cursor column.
969\%<.c Matches before the cursor column.
970\%>.c Matches after the cursor column.
Bram Moolenaar22863042021-10-16 15:23:36 +0100971 These six can be used to match specific columns in a buffer or string.
972 The "23" can be any column number. The first column is 1. Actually,
973 the column is the byte number (thus it's not exactly right for
974 multibyte characters).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 WARNING: When inserting or deleting text Vim does not automatically
976 update the matches. This means Syntax highlighting quickly becomes
Bram Moolenaar53f7fcc2021-07-28 20:10:16 +0200977 wrong. Also when referring to the cursor position (".") and
Bram Moolenaar04db26b2021-07-05 20:15:23 +0200978 the cursor moves the display isn't updated for this change. An update
979 is done when using the |CTRL-L| command (the whole screen is updated).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 Example, to highlight the column where the cursor currently is: >
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000981 :exe '/\%' .. col(".") .. 'c'
Bram Moolenaar04db26b2021-07-05 20:15:23 +0200982< Alternatively use: >
983 /\%.c
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984< When 'hlsearch' is set and you move the cursor around and make changes
985 this will clearly show when the match is updated or not.
986 Example for matching a single byte in column 44: >
987 /\%>43c.\%<46c
988< Note that "\%<46c" matches in column 45 when the "." matches a byte in
989 column 44.
990 */\%v* */\%>v* */\%<v*
991\%23v Matches in a specific virtual column.
992\%<23v Matches before a specific virtual column.
993\%>23v Matches after a specific virtual column.
Bram Moolenaar2f0936c2022-01-08 21:51:59 +0000994\%.v Matches at the current virtual column.
995\%<.v Matches before the current virtual column.
996\%>.v Matches after the current virtual column.
Bram Moolenaar22863042021-10-16 15:23:36 +0100997 These six can be used to match specific virtual columns in a buffer or
998 string. When not matching with a buffer in a window, the option
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 values of the current window are used (e.g., 'tabstop').
1000 The "23" can be any column number. The first column is 1.
1001 Note that some virtual column positions will never match, because they
Bram Moolenaar69c2f172007-05-12 14:57:31 +00001002 are halfway through a tab or other character that occupies more than
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001003 one screen character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 WARNING: When inserting or deleting text Vim does not automatically
Bram Moolenaarde934d72005-05-22 22:09:40 +00001005 update highlighted matches. This means Syntax highlighting quickly
Bram Moolenaar53f7fcc2021-07-28 20:10:16 +02001006 becomes wrong. Also when referring to the cursor position (".") and
Bram Moolenaar04db26b2021-07-05 20:15:23 +02001007 the cursor moves the display isn't updated for this change. An update
1008 is done when using the |CTRL-L| command (the whole screen is updated).
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001009 Example, to highlight all the characters after virtual column 72: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010 /\%>72v.*
1011< When 'hlsearch' is set and you move the cursor around and make changes
1012 this will clearly show when the match is updated or not.
1013 To match the text up to column 17: >
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001014 /^.*\%17v
Bram Moolenaar04db26b2021-07-05 20:15:23 +02001015< To match all characters after the current virtual column (where the
1016 cursor is): >
1017 /\%>.v.*
h-east624bb832024-11-09 18:37:32 +01001018< Column 17 is not included, because this is a |/zero-width| match. To
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001019 include the column use: >
1020 /^.*\%17v.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001021< This command does the same thing, but also matches when there is no
1022 character in column 17: >
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001023 /^.*\%<18v.
1024< Note that without the "^" to anchor the match in the first column,
1025 this will also highlight column 17: >
1026 /.*\%17v
1027< Column 17 is highlighted by 'hlsearch' because there is another match
1028 where ".*" matches zero characters.
Bram Moolenaar22863042021-10-16 15:23:36 +01001029
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001031Character classes:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032\i identifier character (see 'isident' option) */\i*
1033\I like "\i", but excluding digits */\I*
1034\k keyword character (see 'iskeyword' option) */\k*
1035\K like "\k", but excluding digits */\K*
1036\f file name character (see 'isfname' option) */\f*
1037\F like "\f", but excluding digits */\F*
1038\p printable character (see 'isprint' option) */\p*
1039\P like "\p", but excluding digits */\P*
1040
Bram Moolenaar207f0092020-08-30 17:20:20 +02001041NOTE: the above also work for multibyte characters. The ones below only
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042match ASCII characters, as indicated by the range.
1043
1044 *whitespace* *white-space*
1045\s whitespace character: <Space> and <Tab> */\s*
1046\S non-whitespace character; opposite of \s */\S*
1047\d digit: [0-9] */\d*
1048\D non-digit: [^0-9] */\D*
1049\x hex digit: [0-9A-Fa-f] */\x*
1050\X non-hex digit: [^0-9A-Fa-f] */\X*
1051\o octal digit: [0-7] */\o*
1052\O non-octal digit: [^0-7] */\O*
1053\w word character: [0-9A-Za-z_] */\w*
1054\W non-word character: [^0-9A-Za-z_] */\W*
1055\h head of word character: [A-Za-z_] */\h*
1056\H non-head of word character: [^A-Za-z_] */\H*
1057\a alphabetic character: [A-Za-z] */\a*
1058\A non-alphabetic character: [^A-Za-z] */\A*
1059\l lowercase character: [a-z] */\l*
1060\L non-lowercase character: [^a-z] */\L*
1061\u uppercase character: [A-Z] */\u*
Bram Moolenaarf1568ec2011-12-14 21:17:39 +01001062\U non-uppercase character: [^A-Z] */\U*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063
1064 NOTE: Using the atom is faster than the [] form.
1065
1066 NOTE: 'ignorecase', "\c" and "\C" are not used by character classes.
1067
1068 */\_* *E63* */\_i* */\_I* */\_k* */\_K* */\_f* */\_F*
1069 */\_p* */\_P* */\_s* */\_S* */\_d* */\_D* */\_x* */\_X*
1070 */\_o* */\_O* */\_w* */\_W* */\_h* */\_H* */\_a* */\_A*
1071 */\_l* */\_L* */\_u* */\_U*
1072\_x Where "x" is any of the characters above: The character class with
1073 end-of-line added
1074(end of character classes)
1075
1076\e matches <Esc> */\e*
1077\t matches <Tab> */\t*
1078\r matches <CR> */\r*
1079\b matches <BS> */\b*
1080\n matches an end-of-line */\n*
1081 When matching in a string instead of buffer text a literal newline
1082 character is matched.
1083
1084~ matches the last given substitute string */~* */\~*
1085
1086\(\) A pattern enclosed by escaped parentheses. */\(* */\(\)* */\)*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001087 E.g., "\(^a\)" matches 'a' at the start of a line.
h_eastba77bbb2023-10-03 04:47:13 +09001088 There can only be nine of these. You can use "\%(" to add more, but
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00001089 not counting it as a sub-expression.
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001090 *E51* *E54* *E55* *E872* *E873*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091
1092\1 Matches the same string that was matched by */\1* *E65*
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001093 the first sub-expression in \( and \).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094 Example: "\([a-z]\).\1" matches "ata", "ehe", "tot", etc.
1095\2 Like "\1", but uses second sub-expression, */\2*
1096 ... */\3*
1097\9 Like "\1", but uses ninth sub-expression. */\9*
1098 Note: The numbering of groups is done based on which "\(" comes first
1099 in the pattern (going left to right), NOT based on what is matched
1100 first.
1101
1102\%(\) A pattern enclosed by escaped parentheses. */\%(\)* */\%(* *E53*
1103 Just like \(\), but without counting it as a sub-expression. This
1104 allows using more groups and it's a little bit faster.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105
1106x A single character, with no special meaning, matches itself
1107
1108 */\* */\\*
1109\x A backslash followed by a single character, with no special meaning,
1110 is reserved for future expansions
1111
Bram Moolenaar2f0936c2022-01-08 21:51:59 +00001112[] (with 'nomagic': \[]) */[]* */\[]* */\_[]* */collection* *E76*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113\_[]
Bram Moolenaar1b884a02020-12-10 21:11:27 +01001114 A collection. This is a sequence of characters enclosed in square
1115 brackets. It matches any single character in the collection.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 Example matches ~
1117 [xyz] any 'x', 'y' or 'z'
1118 [a-zA-Z]$ any alphabetic character at the end of a line
1119 \c[a-z]$ same
Bram Moolenaara3e6bc92013-01-30 14:18:00 +01001120 [А-яЁё] Russian alphabet (with utf-8 and cp1251)
1121
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00001122 */[\n]*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001123 With "\_" prepended the collection also includes the end-of-line.
1124 The same can be done by including "\n" in the collection. The
1125 end-of-line is also matched when the collection starts with "^"! Thus
1126 "\_[^ab]" matches the end-of-line and any character but "a" and "b".
1127 This makes it Vi compatible: Without the "\_" or "\n" the collection
1128 does not match an end-of-line.
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001129 *E769*
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001130 When the ']' is not there Vim will not give an error message but
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001131 assume no collection is used. Useful to search for '['. However, you
Bram Moolenaar5837f1f2015-03-21 18:06:14 +01001132 do get E769 for internal searching. And be aware that in a
1133 `:substitute` command the whole command becomes the pattern. E.g.
1134 ":s/[/x/" searches for "[/x" and replaces it with nothing. It does
1135 not search for "[" and replaces it with "x"!
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001136
Bram Moolenaar3ec574f2017-06-13 18:12:01 +02001137 *E944* *E945*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 If the sequence begins with "^", it matches any single character NOT
1139 in the collection: "[^xyz]" matches anything but 'x', 'y' and 'z'.
1140 - If two characters in the sequence are separated by '-', this is
1141 shorthand for the full list of ASCII characters between them. E.g.,
h-east624bb832024-11-09 18:37:32 +01001142 "[0-9]" matches any decimal digit. If the starting character exceeds
1143 the ending character, e.g. [c-a], E944 occurs. Non-ASCII characters
Bram Moolenaar3ec574f2017-06-13 18:12:01 +02001144 can be used, but the character values must not be more than 256 apart
h-east624bb832024-11-09 18:37:32 +01001145 in the old regexp engine. For example, searching by [\u3000-\u4000]
1146 after setting re=1 emits a E945 error. Prepending \%#=2 will fix it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147 - A character class expression is evaluated to the set of characters
1148 belonging to that character class. The following character classes
1149 are supported:
Bram Moolenaar0c078fc2017-03-29 15:31:20 +02001150 Name Func Contents ~
1151*[:alnum:]* [:alnum:] isalnum ASCII letters and digits
Bram Moolenaar938ae282023-02-20 20:44:55 +00001152*[:alpha:]* [:alpha:] isalpha ASCII letters
1153*[:blank:]* [:blank:] space and tab
1154*[:cntrl:]* [:cntrl:] iscntrl ASCII control characters
1155*[:digit:]* [:digit:] decimal digits '0' to '9'
Bram Moolenaar0c078fc2017-03-29 15:31:20 +02001156*[:graph:]* [:graph:] isgraph ASCII printable characters excluding
1157 space
1158*[:lower:]* [:lower:] (1) lowercase letters (all letters when
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 'ignorecase' is used)
Bram Moolenaar938ae282023-02-20 20:44:55 +00001160*[:print:]* [:print:] (2) printable characters including space
Bram Moolenaar0c078fc2017-03-29 15:31:20 +02001161*[:punct:]* [:punct:] ispunct ASCII punctuation characters
Bram Moolenaar938ae282023-02-20 20:44:55 +00001162*[:space:]* [:space:] whitespace characters: space, tab, CR,
Bram Moolenaar0c078fc2017-03-29 15:31:20 +02001163 NL, vertical tab, form feed
1164*[:upper:]* [:upper:] (3) uppercase letters (all letters when
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 'ignorecase' is used)
Bram Moolenaar938ae282023-02-20 20:44:55 +00001166*[:xdigit:]* [:xdigit:] hexadecimal digits: 0-9, a-f, A-F
Bram Moolenaar0c078fc2017-03-29 15:31:20 +02001167*[:return:]* [:return:] the <CR> character
1168*[:tab:]* [:tab:] the <Tab> character
1169*[:escape:]* [:escape:] the <Esc> character
1170*[:backspace:]* [:backspace:] the <BS> character
Bram Moolenaar221cd9f2019-01-31 15:34:40 +01001171*[:ident:]* [:ident:] identifier character (same as "\i")
1172*[:keyword:]* [:keyword:] keyword character (same as "\k")
1173*[:fname:]* [:fname:] file name character (same as "\f")
Bram Moolenaar1b884a02020-12-10 21:11:27 +01001174 The square brackets in character class expressions are additional to
1175 the square brackets delimiting a collection. For example, the
1176 following is a plausible pattern for a UNIX filename:
1177 "[-./[:alnum:]_~]\+". That is, a list of at least one character,
1178 each of which is either '-', '.', '/', alphabetic, numeric, '_' or
1179 '~'.
Bram Moolenaarfa735342016-01-03 22:14:44 +01001180 These items only work for 8-bit characters, except [:lower:] and
Bram Moolenaar207f0092020-08-30 17:20:20 +02001181 [:upper:] also work for multibyte characters when using the new
Bram Moolenaar03413f42016-04-12 21:07:15 +02001182 regexp engine. See |two-engines|. In the future these items may
Bram Moolenaar207f0092020-08-30 17:20:20 +02001183 work for multibyte characters. For now, to get all "alpha"
Bram Moolenaar06481422016-04-30 15:13:38 +02001184 characters you can use: [[:lower:][:upper:]].
Bram Moolenaar0c078fc2017-03-29 15:31:20 +02001185
1186 The "Func" column shows what library function is used. The
1187 implementation depends on the system. Otherwise:
1188 (1) Uses islower() for ASCII and Vim builtin rules for other
Bram Moolenaar4c92e752019-02-17 21:18:32 +01001189 characters.
Bram Moolenaar0c078fc2017-03-29 15:31:20 +02001190 (2) Uses Vim builtin rules
1191 (3) As with (1) but using isupper()
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001192 */[[=* *[==]*
1193 - An equivalence class. This means that characters are matched that
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001194 have almost the same meaning, e.g., when ignoring accents. This
1195 only works for Unicode, latin1 and latin9. The form is:
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001196 [=a=]
Bram Moolenaar26a60b42005-02-22 08:49:11 +00001197 */[[.* *[..]*
1198 - A collation element. This currently simply accepts a single
1199 character in the form:
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001200 [.a.]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 */\]*
1202 - To include a literal ']', '^', '-' or '\' in the collection, put a
1203 backslash before it: "[xyz\]]", "[\^xyz]", "[xy\-z]" and "[xyz\\]".
1204 (Note: POSIX does not support the use of a backslash this way). For
1205 ']' you can also make it the first character (following a possible
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001206 "^"): "[]xyz]" or "[^]xyz]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207 For '-' you can also make it the first or last character: "[-xyz]",
1208 "[^-xyz]" or "[xyz-]". For '\' you can also let it be followed by
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02001209 any character that's not in "^]-\bdertnoUux". "[\xyz]" matches '\',
1210 'x', 'y' and 'z'. It's better to use "\\" though, future expansions
1211 may use other characters after '\'.
h-east624bb832024-11-09 18:37:32 +01001212 - Omitting the trailing ] is not considered an error. "[]" works like
Bram Moolenaarff034192013-04-24 18:51:19 +02001213 "[]]", it matches the ']' character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214 - The following translations are accepted when the 'l' flag is not
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001215 included in 'cpoptions':
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216 \e <Esc>
1217 \t <Tab>
1218 \r <CR> (NOT end-of-line!)
1219 \b <BS>
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00001220 \n line break, see above |/[\n]|
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001221 \d123 decimal number of character
Bram Moolenaar82be4842021-01-11 19:40:15 +01001222 \o40 octal number of character up to 0o377
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001223 \x20 hexadecimal number of character up to 0xff
1224 \u20AC hex. number of multibyte character up to 0xffff
1225 \U1234 hex. number of multibyte character up to 0xffffffff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 NOTE: The other backslash codes mentioned above do not work inside
1227 []!
1228 - Matching with a collection can be slow, because each character in
1229 the text has to be compared with each character in the collection.
1230 Use one of the other atoms above when possible. Example: "\d" is
Bram Moolenaar98ef2332018-03-18 14:44:37 +01001231 much faster than "[0-9]" and matches the same characters. However,
1232 the new |NFA| regexp engine deals with this better than the old one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233
1234 */\%[]* *E69* *E70* *E369*
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001235\%[] A sequence of optionally matched atoms. This always matches.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236 It matches as much of the list of atoms it contains as possible. Thus
1237 it stops at the first atom that doesn't match. For example: >
1238 /r\%[ead]
1239< matches "r", "re", "rea" or "read". The longest that matches is used.
1240 To match the Ex command "function", where "fu" is required and
1241 "nction" is optional, this would work: >
1242 /\<fu\%[nction]\>
1243< The end-of-word atom "\>" is used to avoid matching "fu" in "full".
1244 It gets more complicated when the atoms are not ordinary characters.
1245 You don't often have to use it, but it is possible. Example: >
1246 /\<r\%[[eo]ad]\>
1247< Matches the words "r", "re", "ro", "rea", "roa", "read" and "road".
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00001248 There can be no \(\), \%(\) or \z(\) items inside the [] and \%[] does
1249 not nest.
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001250 To include a "[" use "[[]" and for "]" use []]", e.g.,: >
1251 /index\%[[[]0[]]]
1252< matches "index" "index[", "index[0" and "index[0]".
Bram Moolenaardb84e452010-08-15 13:50:43 +02001253 {not available when compiled without the |+syntax| feature}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254
Bram Moolenaar677ee682005-01-27 14:41:15 +00001255 */\%d* */\%x* */\%o* */\%u* */\%U* *E678*
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001256
1257\%d123 Matches the character specified with a decimal number. Must be
1258 followed by a non-digit.
Bram Moolenaar2346a632021-06-13 19:02:49 +02001259\%o40 Matches the character specified with an octal number up to 0o377.
Bram Moolenaar82be4842021-01-11 19:40:15 +01001260 Numbers below 0o40 must be followed by a non-octal digit or a
1261 non-digit.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00001262\%x2a Matches the character specified with up to two hexadecimal characters.
1263\%u20AC Matches the character specified with up to four hexadecimal
1264 characters.
1265\%U1234abcd Matches the character specified with up to eight hexadecimal
Bram Moolenaarf6b40102019-02-22 15:24:03 +01001266 characters, up to 0x7fffffff
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267
1268==============================================================================
12697. Ignoring case in a pattern */ignorecase*
1270
1271If the 'ignorecase' option is on, the case of normal letters is ignored.
1272'smartcase' can be set to ignore case when the pattern contains lowercase
1273letters only.
1274 */\c* */\C*
1275When "\c" appears anywhere in the pattern, the whole pattern is handled like
1276'ignorecase' is on. The actual value of 'ignorecase' and 'smartcase' is
1277ignored. "\C" does the opposite: Force matching case for the whole pattern.
1278{only Vim supports \c and \C}
1279Note that 'ignorecase', "\c" and "\C" are not used for the character classes.
1280
1281Examples:
1282 pattern 'ignorecase' 'smartcase' matches ~
1283 foo off - foo
1284 foo on - foo Foo FOO
1285 Foo on off foo Foo FOO
1286 Foo on on Foo
1287 \cfoo - - foo Foo FOO
1288 foo\C - - foo
1289
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290Technical detail: *NL-used-for-Nul*
1291<Nul> characters in the file are stored as <NL> in memory. In the display
1292they are shown as "^@". The translation is done when reading and writing
1293files. To match a <Nul> with a search pattern you can just enter CTRL-@ or
1294"CTRL-V 000". This is probably just what you expect. Internally the
1295character is replaced with a <NL> in the search pattern. What is unusual is
1296that typing CTRL-V CTRL-J also inserts a <NL>, thus also searches for a <Nul>
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001297in the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298
1299 *CR-used-for-NL*
1300When 'fileformat' is "mac", <NL> characters in the file are stored as <CR>
Bram Moolenaare37d50a2008-08-06 17:06:04 +00001301characters internally. In the text they are shown as "^J". Otherwise this
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302works similar to the usage of <NL> for a <Nul>.
1303
1304When working with expression evaluation, a <NL> character in the pattern
1305matches a <NL> in the string. The use of "\n" (backslash n) to match a <NL>
1306doesn't work there, it only works to match text in the buffer.
1307
Bram Moolenaar207f0092020-08-30 17:20:20 +02001308 *pattern-multi-byte* *pattern-multibyte*
1309Patterns will also work with multibyte characters, mostly as you would
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310expect. But invalid bytes may cause trouble, a pattern with an invalid byte
1311will probably never match.
1312
1313==============================================================================
Bram Moolenaar362e1a32006-03-06 23:29:24 +000013148. Composing characters *patterns-composing*
1315
1316 */\Z*
Bram Moolenaar8df5acf2014-05-13 19:37:29 +02001317When "\Z" appears anywhere in the pattern, all composing characters are
1318ignored. Thus only the base characters need to match, the composing
1319characters may be different and the number of composing characters may differ.
1320Only relevant when 'encoding' is "utf-8".
Bram Moolenaar543b7ef2013-06-01 14:50:56 +02001321Exception: If the pattern starts with one or more composing characters, these
1322must match.
Bram Moolenaar8df5acf2014-05-13 19:37:29 +02001323 */\%C*
1324Use "\%C" to skip any composing characters. For example, the pattern "a" does
1325not match in "càt" (where the a has the composing character 0x0300), but
1326"a\%C" does. Note that this does not match "cát" (where the á is character
13270xe1, it does not have a compositing character). It does match "cat" (where
1328the a is just an a).
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001329
Bram Moolenaar7ff78462020-07-10 22:00:53 +02001330When a composing character appears at the start of the pattern or after an
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001331item that doesn't include the composing character, a match is found at any
1332character that includes this composing character.
1333
1334When using a dot and a composing character, this works the same as the
1335composing character by itself, except that it doesn't matter what comes before
1336this.
1337
Bram Moolenaar543b7ef2013-06-01 14:50:56 +02001338The order of composing characters does not matter. Also, the text may have
1339more composing characters than the pattern, it still matches. But all
1340composing characters in the pattern must be found in the text.
1341
1342Suppose B is a base character and x and y are composing characters:
1343 pattern text match ~
1344 Bxy Bxy yes (perfect match)
1345 Bxy Byx yes (order ignored)
1346 Bxy By no (x missing)
1347 Bxy Bx no (y missing)
Bram Moolenaar203d04d2013-06-06 21:36:40 +02001348 Bx Bx yes (perfect match)
Bram Moolenaar543b7ef2013-06-01 14:50:56 +02001349 Bx By no (x missing)
1350 Bx Bxy yes (extra y ignored)
1351 Bx Byx yes (extra y ignored)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001352
1353==============================================================================
13549. Compare with Perl patterns *perl-patterns*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355
1356Vim's regexes are most similar to Perl's, in terms of what you can do. The
1357difference between them is mostly just notation; here's a summary of where
1358they differ:
1359
1360Capability in Vimspeak in Perlspeak ~
1361----------------------------------------------------------------
1362force case insensitivity \c (?i)
1363force case sensitivity \C (?-i)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001364backref-less grouping \%(atom\) (?:atom)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365conservative quantifiers \{-n,m} *?, +?, ??, {}?
13660-width match atom\@= (?=atom)
13670-width non-match atom\@! (?!atom)
13680-width preceding match atom\@<= (?<=atom)
13690-width preceding non-match atom\@<! (?<!atom)
1370match without retry atom\@> (?>atom)
1371
1372Vim and Perl handle newline characters inside a string a bit differently:
1373
1374In Perl, ^ and $ only match at the very beginning and end of the text,
1375by default, but you can set the 'm' flag, which lets them match at
1376embedded newlines as well. You can also set the 's' flag, which causes
1377a . to match newlines as well. (Both these flags can be changed inside
1378a pattern using the same syntax used for the i flag above, BTW.)
1379
1380On the other hand, Vim's ^ and $ always match at embedded newlines, and
1381you get two separate atoms, \%^ and \%$, which only match at the very
1382start and end of the text, respectively. Vim solves the second problem
1383by giving you the \_ "modifier": put it in front of a . or a character
1384class, and they will match newlines as well.
1385
1386Finally, these constructs are unique to Perl:
1387- execution of arbitrary code in the regex: (?{perl code})
1388- conditional expressions: (?(condition)true-expr|false-expr)
1389
1390...and these are unique to Vim:
1391- changing the magic-ness of a pattern: \v \V \m \M
1392 (very useful for avoiding backslashitis)
1393- sequence of optionally matching atoms: \%[atoms]
1394- \& (which is to \| what "and" is to "or"; it forces several branches
1395 to match at one spot)
1396- matching lines/columns by number: \%5l \%5c \%5v
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001397- setting the start and end of the match: \zs \ze
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398
1399==============================================================================
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000140010. Highlighting matches *match-highlight*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401
Christian Brabandtfe1e2b52024-04-26 18:42:59 +02001402 *syntax-vs-match*
1403 Note that the match highlight mechanism is independent
1404 of |syntax-highlighting|, which is (usually) a buffer-local
1405 highlighting, while matching is window-local, both methods
1406 can be freely mixed. Match highlighting functions give you
1407 a bit more flexibility in when and how to apply, but are
1408 typically only used for temporary highlighting, without strict
1409 rules. Both methods can be used to conceal text.
1410
1411 Thus the matching functions like |matchadd()| won't consider
Philip H9525f622024-04-26 19:57:20 +02001412 syntax rules and functions like |synconcealed()| and the
Christian Brabandtfe1e2b52024-04-26 18:42:59 +02001413 other way around.
1414
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415 *:mat* *:match*
1416:mat[ch] {group} /{pattern}/
1417 Define a pattern to highlight in the current window. It will
1418 be highlighted with {group}. Example: >
1419 :highlight MyGroup ctermbg=green guibg=green
1420 :match MyGroup /TODO/
1421< Instead of // any character can be used to mark the start and
1422 end of the {pattern}. Watch out for using special characters,
1423 such as '"' and '|'.
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00001424
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 {group} must exist at the moment this command is executed.
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00001426
1427 The {group} highlighting still applies when a character is
Bram Moolenaar6ee10162007-07-26 20:58:42 +00001428 to be highlighted for 'hlsearch', as the highlighting for
1429 matches is given higher priority than that of 'hlsearch'.
1430 Syntax highlighting (see 'syntax') is also overruled by
1431 matches.
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00001432
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433 Note that highlighting the last used search pattern with
1434 'hlsearch' is used in all windows, while the pattern defined
1435 with ":match" only exists in the current window. It is kept
1436 when switching to another buffer.
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00001437
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00001438 'ignorecase' does not apply, use |/\c| in the pattern to
1439 ignore case. Otherwise case is not ignored.
1440
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001441 'redrawtime' defines the maximum time searched for pattern
1442 matches.
1443
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00001444 When matching end-of-line and Vim redraws only part of the
1445 display you may get unexpected results. That is because Vim
1446 looks for a match in the line where redrawing starts.
1447
h-east624bb832024-11-09 18:37:32 +01001448 Also see |matcharg()| and |getmatches()|. The former returns
Bram Moolenaar6ee10162007-07-26 20:58:42 +00001449 the highlight group and pattern of a previous |:match|
1450 command. The latter returns a list with highlight groups and
1451 patterns defined by both |matchadd()| and |:match|.
1452
1453 Highlighting matches using |:match| are limited to three
Bram Moolenaar822ff862014-06-12 21:46:14 +02001454 matches (aside from |:match|, |:2match| and |:3match| are
h-east624bb832024-11-09 18:37:32 +01001455 available). |matchadd()| does not have this limitation and in
Bram Moolenaar6ee10162007-07-26 20:58:42 +00001456 addition makes it possible to prioritize matches.
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001457
Bram Moolenaar071d4272004-06-13 20:20:40 +00001458 Another example, which highlights all characters in virtual
1459 column 72 and more: >
1460 :highlight rightMargin term=bold ctermfg=blue guifg=blue
1461 :match rightMargin /.\%>72v/
1462< To highlight all character that are in virtual column 7: >
1463 :highlight col8 ctermbg=grey guibg=grey
1464 :match col8 /\%<8v.\%>7v/
1465< Note the use of two items to also match a character that
1466 occupies more than one virtual column, such as a TAB.
1467
1468:mat[ch]
1469:mat[ch] none
1470 Clear a previously defined match pattern.
1471
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00001472
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001473:2mat[ch] {group} /{pattern}/ *:2match*
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00001474:2mat[ch]
1475:2mat[ch] none
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001476:3mat[ch] {group} /{pattern}/ *:3match*
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00001477:3mat[ch]
1478:3mat[ch] none
1479 Just like |:match| above, but set a separate match. Thus
1480 there can be three matches active at the same time. The match
1481 with the lowest number has priority if several match at the
Christian Brabandtd3e277f2023-10-21 11:06:50 +02001482 same position. It uses the match id 3.
Ernie Raela5a15342023-10-23 19:08:38 +02001483 The ":3match" command is used by (Vim < 9.0.2054) |matchparen|
h-east624bb832024-11-09 18:37:32 +01001484 plugin. You are suggested to use ":match" for manual matching
Christian Brabandtd3e277f2023-10-21 11:06:50 +02001485 and ":2match" for another plugin or even better make use of
1486 the more flexible |matchadd()| (and similar) functions instead.
Bram Moolenaarfd2ac762006-03-01 22:09:21 +00001487
Bram Moolenaar3ec32172021-05-16 12:39:47 +02001488==============================================================================
Bram Moolenaar1588bc82022-03-08 21:35:07 +0000148911. Fuzzy matching *fuzzy-matching*
Bram Moolenaar3ec32172021-05-16 12:39:47 +02001490
1491Fuzzy matching refers to matching strings using a non-exact search string.
1492Fuzzy matching will match a string, if all the characters in the search string
h-east624bb832024-11-09 18:37:32 +01001493are present anywhere in the string in the same order. Case is ignored. In a
Bram Moolenaar3ec32172021-05-16 12:39:47 +02001494matched string, other characters can be present between two consecutive
h-east624bb832024-11-09 18:37:32 +01001495characters in the search string. If the search string has multiple words, then
1496each word is matched separately. So the words in the search string can be
Bram Moolenaar3ec32172021-05-16 12:39:47 +02001497present in any order in a string.
1498
1499Fuzzy matching assigns a score for each matched string based on the following
1500criteria:
1501 - The number of sequentially matching characters.
1502 - The number of characters (distance) between two consecutive matching
1503 characters.
1504 - Matches at the beginning of a word
Bram Moolenaar53f7fcc2021-07-28 20:10:16 +02001505 - Matches at a camel case character (e.g. Case in CamelCase)
1506 - Matches after a path separator or a hyphen.
Bram Moolenaar3ec32172021-05-16 12:39:47 +02001507 - The number of unmatched characters in a string.
glepnir5a049992024-12-26 15:38:39 +01001508 - A full/exact match is preferred.
Bram Moolenaar3ec32172021-05-16 12:39:47 +02001509The matching string with the highest score is returned first.
1510
1511For example, when you search for the "get pat" string using fuzzy matching, it
1512will match the strings "GetPattern", "PatternGet", "getPattern", "patGetter",
1513"getSomePattern", "MatchpatternGet" etc.
1514
1515The functions |matchfuzzy()| and |matchfuzzypos()| can be used to fuzzy search
h-east624bb832024-11-09 18:37:32 +01001516a string in a List of strings. The matchfuzzy() function returns a List of
1517matching strings. The matchfuzzypos() functions returns the List of matches,
Bram Moolenaar3ec32172021-05-16 12:39:47 +02001518the matching positions and the fuzzy match scores.
1519
1520The "f" flag of `:vimgrep` enables fuzzy matching.
1521
glepnira218cc62024-06-03 19:32:39 +02001522To enable fuzzy matching for |ins-completion|, add the "fuzzy" value to the
1523'completeopt' option.
Bram Moolenaar3ec32172021-05-16 12:39:47 +02001524
Bram Moolenaar91f84f62018-07-29 15:07:52 +02001525 vim:tw=78:ts=8:noet:ft=help:norl: