Lines Matching refs:possible
236 previous substitute pattern is used, if possible.
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
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
788 the "aaa" (as many "a"s as possible), thus the "ab" can't match.
1188 ']' you can also make it the first character (following a possible
1213 Use one of the other atoms above when possible. Example: "\d" is
1219 It matches as much of the list of atoms it contains as possible. Thus
1228 You don't often have to use it, but it is possible. Example: >
1426 addition makes it possible to prioritize matches.