Lines Matching refs:width
470 |/\@=| \@= \@= nothing, requires a match |/zero-width|
471 |/\@!| \@! \@! nothing, requires NO match |/zero-width|
472 |/\@<=| \@<= \@<= nothing, requires a match behind |/zero-width|
473 |/\@<!| \@<! \@<! nothing, requires NO match behind |/zero-width|
481 |/^| ^ ^ start-of-line (at start of pattern) |/zero-width|
483 |/\_^| \_^ \_^ start-of-line (used anywhere) |/zero-width|
484 |/$| $ $ end-of-line (at end of pattern) |/zero-width|
486 |/\_$| \_$ \_$ end-of-line (used anywhere) |/zero-width|
489 |/\<| \< \< beginning of a word |/zero-width|
490 |/\>| \> \> end of a word |/zero-width|
493 |/\%^| \%^ \%^ beginning of file |/zero-width| *E71*
494 |/\%$| \%$ \%$ end of file |/zero-width|
495 |/\%V| \%V \%V inside Visual area |/zero-width|
496 |/\%#| \%# \%# cursor position |/zero-width|
497 |/\%'m| \%'m \%'m mark m position |/zero-width|
498 |/\%l| \%23l \%23l in line 23 |/zero-width|
499 |/\%c| \%23c \%23c in column 23 |/zero-width|
500 |/\%v| \%23v \%23v in virtual column 23 |/zero-width|
565 |/\%#=| \%#=1 \%#=1 select regexp engine |/zero-width|
667 \@= Matches the preceding atom with zero width.
672 */zero-width*
686 \@! Matches with zero width if the preceding atom does NOT match at the
687 current position. |/zero-width|
716 \@<= Matches with zero width if the preceding atom matches just before what
717 follows. |/zero-width|
718 Like "(?<=pattern)" in Perl, but Vim allows non-fixed-width patterns.
758 \@<! Matches with zero width if the preceding atom does NOT match just
761 before what follows. |/zero-width|
762 Like "(?<!pattern)" in Perl, but Vim allows non-fixed-width patterns.
798 start-of-line; at other positions, matches literal '^'. |/zero-width|
807 \_^ Matches start-of-line. |/zero-width| Can be used at any position in
816 |/zero-width|
823 \_$ Matches end-of-line. |/zero-width| Can be used at any position in the
840 |/zero-width|
845 |/zero-width|
850 |/zero-width|
863 |/zero-width|
892 This is a |/zero-width| match. To make sure the whole pattern is
923 since it's a |/zero-width| match it doesn't include that character.
1003 < Column 17 is not included, because this is a |/zero-width| match. To
1349 0-width match atom\@= (?=atom)
1350 0-width non-match atom\@! (?!atom)
1351 0-width preceding match atom\@<= (?<=atom)
1352 0-width preceding non-match atom\@<! (?<!atom)