pattern.txt 62 KB

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