Lines Matching refs:matches
121 |gstar| N g* like "*", but also find partial matches
122 |g#| N g# like "#", but also find partial matches
129 matches any single character . \.
130 matches start of line ^ ^
131 matches <EOL> $ $
132 matches start of word \< \<
133 matches end of word \> \>
134 matches a single char from the range [a-z] \[a-z]
135 matches a single char not in the range [^a-z] \[^a-z]
136 matches an identifier char \i \i
138 matches a keyword character \k \k
140 matches a file name character \f \f
142 matches a printable character \p \p
144 matches a white space character \s \s
145 matches a non-white space character \S \S
147 matches <Esc> \e \e
148 matches <Tab> \t \t
149 matches <CR> \r \r
150 matches <BS> \b \b
152 matches 0 or more of the preceding atom * \*
153 matches 1 or more of the preceding atom \+ \+
154 matches 0 or 1 of the preceding atom \= \=
155 matches 2 to 5 of the preceding atom \{2,5} \{2,5}
214 there are multiple matches
499 within [range] where {pattern} matches
748 'hlsearch' 'hls' highlight matches with last search pattern
933 'tagfunc' 'tfu' function to get list of tag matches
1046 |:grep| :gr[ep] [args] execute 'grepprg' to find matches and jump to
1109 cursor; if there are multiple matches,
1118 |c_CTRL-N| CTRL-N after 'wildchar' with multiple matches: go
1120 |c_CTRL-P| CTRL-P after 'wildchar' with multiple matches: go
1135 |:range| /{pattern}[/] the next line where {pattern} matches
1136 |:range| ?{pattern}[?] the previous line where {pattern} matches