I'm wondering if there is a way to find a pattern, but restrict it to the current line. Basically, the equivalent of /PATTERN
but restricted to the current line, rather than the entire document.
I've tried :s/PATTERN
, but that deletes the pattern from the line and places my cursor at the beginning of the line, which is not at all what I need. I was hoping you could search without replacing...
I'm hoping to use this for a macro in order to place my cursor at the start of that pattern, as would happen when you do /PATTERN
on the entire file, so anything that is macro-friendly is even better.
Any vim users out there that might have an idea?
EDIT: 0/PATTERN
in a macro would work for my current need, but I'm hoping there's a more specific way to restrict the search.
ANSWER: There's a few ways posted in here so far, but the one I like best right now is using Shift+V
to select the current line visually, followed by /\%V
to search only in the visual selection. Then Shift+V
again will turn off the visual mode.
My knowledge about macro is limited, but interactively, you can select current line with Shift + V
, and then do /\%Vsearch
(see http://vimdoc.sourceforge.net/htmldoc/pattern.html#/\%V).