I use vim and vim plugins for visual studio when writing C++. Often, I find myself wanting to search for a string within a function, for example every call to object->public_member.memberfunc(). I know vim offers a convenient way to search for a single word, by pressing * and #, and it can also search for typed strings using the ubiquitous slash / command. When trying to search for all the instances of a longer string like the one above, it takes a while to re-type after /. Is there a way to search for selection? For example, highlight with v, then copy with y, is there a way to paste after / ? Is there an easier shortcut?

link|improve this question

feedback

4 Answers

up vote 55 down vote accepted

Check this Vim tip: Search for visually selected text

Or you can simply yank the selected text with y and go to search mode /, then you can paste the last yanked text with Ctrl+R 0

link|improve this answer
1  
Very cool. CMS = fast + detailed. – Marcin Dec 12 '08 at 15:54
2  
@CMS. Thanks. Great tip! Using :reg to see what's in your registers and then using cntl-R N to get what's in register N is excellent! – Rob Wells Dec 15 '08 at 20:22
@Rob & @Marcin, you're welcome, happy Vimming! – CMS Dec 15 '08 at 20:55
you are now officially my hero. – alesplin Feb 12 '10 at 18:35
feedback

Use q / instead of just /. (Same with q :). Now you can VIM-edit through your command and search history! (Try Ctrl-N and Ctrl-P sometime).

link|improve this answer
+1 Interesting tip! Not really related, but still very useful. – Marcin Aug 15 '11 at 20:54
After seeing Cory Klein's answer I notice I was very wrong about this being unrelated. It actually makes the whole process a bit quicker for me. (No Ctrl key needed!) – Marcin May 7 at 4:24
feedback

Building on arcanex's answer, here is yet another way to do what you want.

  1. Visually select the text you want to search.
  2. yq/p
  3. Hit Enter
link|improve this answer
+1 This is very straightforward and easy to remember. Thanks for sharing. – Marcin May 7 at 4:22
feedback

In command mode, when the cursor is on your desired text, just press * :)

link|improve this answer
OP specifically said that * does not do what is wanted. – Kelvin Mar 19 at 15:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.