Lines Matching refs:as
86 # Same as "*", but search backward. The pound sign
87 (character 163) also works. If the "#" key works as
225 - It can be used as a single motion command after an operator.
260 'c' flag in 'cpoptions' as described above. Then the last match before the
398 Some characters in the pattern, such as letters, are taken literally. They
412 Use of "\m" makes the pattern after it be interpreted as if 'magic' is set,
414 Use of "\M" makes the pattern after it be interpreted as if 'nomagic' is used.
432 () \(\) \(\) \(\) group as an atom
451 |/star| * \* 0 or more as many as possible
452 |/\+| \+ \+ 1 or more as many as possible
453 |/\=| \= \= 0 or 1 as many as possible
454 |/\?| \? \? 0 or 1 as many as possible
456 |/\{| \{n,m} \{n,m} n to m as many as possible
458 \{n,} \{n,} at least n as many as possible
459 \{,m} \{,m} 0 to m as many as possible
460 \{} \{} 0 or more as many as possible (same as *)
462 |/\{-| \{-n,m} \{-n,m} n to m as few as possible
464 \{-n,} \{-n,} at least n as few as possible
465 \{-,m} \{-,m} 0 to m as few as possible
466 \{-} \{-} 0 or more as few as possible
541 |/\1| \1 \1 same string as matched by first \(\)
584 with almost the same definition as the ")" command.
600 Matches 0 or more of the preceding atom, as many as possible.
614 will match as many as possible, this first skips over all lines until
619 \+ Matches 1 or more of the preceding atom, as many as possible.
625 \= Matches 0 or 1 of the preceding atom, as many as possible.
634 \{n,m} Matches n to m of the preceding atom, as many as possible
636 \{n,} Matches at least n of the preceding atom, as many as possible
637 \{,m} Matches 0 to m of the preceding atom, as many as possible
638 \{} Matches 0 or more of the preceding atom, as many as possible (like *)
640 \{-n,m} matches n to m of the preceding atom, as few as possible
642 \{-n,} matches at least n of the preceding atom, as few as possible
643 \{-,m} matches 0 to m of the preceding atom, as few as possible
644 \{-} matches 0 or more of the preceding atom, as few as possible
650 the same as "*" but uses the shortest match first algorithm. BUT: A
680 Note that using "\&" works the same as using "\@=": "foo\&.." is the
681 same as "\(foo\)\@=..". But using "\&" is easier, you don't need the
723 instead |/\zs|. To match the same as the above example:
755 The number zero is the same as no limit.
783 This matches the preceding atom as if it was a pattern by itself. If
788 the "aaa" (as many "a"s as possible), thus the "ab" can't match.
1027 match ASCII characters, as indicated by the range.
1086 Just like \(\), but without counting it as a sub-expression. This
1154 *[:ident:]* [:ident:] identifier character (same as "\i")
1155 *[:keyword:]* [:keyword:] keyword character (same as "\k")
1156 *[:fname:]* [:fname:] file name character (same as "\f")
1219 It matches as much of the list of atoms it contains as possible. Thus
1274 <Nul> characters in the file are stored as <NL> in memory. In the display
1275 they are shown as "^@". The translation is done when reading and writing
1283 When 'fileformat' is "mac", <NL> characters in the file are stored as <CR>
1284 characters internally. In the text they are shown as "^J". Otherwise this
1292 Patterns will also work with multibyte characters, mostly as you would
1317 When using a dot and a composing character, this works the same as the
1359 embedded newlines as well. You can also set the 's' flag, which causes
1360 a . to match newlines as well. (Both these flags can be changed inside
1367 class, and they will match newlines as well.
1393 such as '"' and '|'.
1398 to be highlighted for 'hlsearch', as the highlighting for
1436 occupies more than one virtual column, such as a TAB.