Lines Matching refs:position
107 until a blank line is found. From this position Vim
127 ends before the cursor position.
131 ends before the cursor position.
149 command with <CR> to actually position the cursor at the displayed match. Or
176 The offset gives the cursor position relative to the found match:
194 pattern cursor position ~
201 the cursor position before and after the search is affected. However, if a
257 first column, skipping matches until one is found past the cursor position.
261 cursor position is used.
290 This command will search from the cursor position until line 300 for
335 position. Examples:
496 |/\%#| \%# \%# cursor position |/zero-width|
497 |/\%'m| \%'m \%'m mark m position |/zero-width|
613 position to the last occurrence of "END" in the file. Since the "*"
676 be done in the same position. The last example above will not match
677 "foobarfoo", because it tries match "foo" in the same position where
687 current position. |/zero-width|
703 position: "\(foo\)\@!bar" will match "bar" in "foobar", because at the
704 position where "bar" matches, "foo" does not match. To avoid matching
710 < This pattern first checks that there is not a single position in the
728 Theoretically these matches could start anywhere before this position.
759 before what follows. Thus this matches if there is no position in the
803 \^ Matches literal '^'. Can be used at any position in the pattern, but
807 \_^ Matches start-of-line. |/zero-width| Can be used at any position in
819 \$ Matches literal '$'. Can be used at any position in the pattern, but
823 \_$ Matches end-of-line. |/zero-width| Can be used at any position in the
848 \zs Matches at any position, but not inside [], and sets the start of the
861 \ze Matches at any position, but not inside [], and sets the end of the
886 position after the first "VIM".
901 */\%#* *cursor-position*
902 \%# Matches with the cursor position. Only works when matching in a
916 \%'m Matches with the position of mark m.
917 \%<'m Matches before the position of mark m.
918 \%>'m Matches after the position of mark m.
939 wrong. Also when referring to the cursor position (".") and
962 wrong. Also when referring to the cursor position (".") and
991 becomes wrong. Also when referring to the cursor position (".") and
1452 same position.