Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any easy/quick way to "yank" into vim's "last search" register ("/)?

From the vim documentation, it appears that the answer is no, but that it can be assigned via a "let" command:

It is writable with ":let", you can change it to have 'hlsearch' highlight
other matches without actually searching.  You can't yank or delete into this
register.

Ideally what I'd like to do is something like:

"/5yw

which would yank the next 5 words under the cursor & put them in the last search buffer

Alternatively, if there is a way to search for the contents of a named register, that would work too. In other words, if I could do:

"A5yw

and then search for what is in register A, that would work too.

The closest I can come is to yank into a named register & then copy that register into the last search register, e.g.

"A5yw
:let @/=@A

At the risk of making a long question longer, I want to state that it's not always 5 words I'd like to "yank & search" -- sometimes it's 17 characters, sometimes it's to the end of the line, etc... so a hard-coded macro doesn't give me the flexibility I'd want.

share|improve this question

3 Answers

up vote 26 down vote accepted

After pressing '/' to enter a search string, you can then use Ctrl-R and then type the letter representing the register that you want to use.

eg.

  • First, "Ayw to yank a word into register A
  • Then, / ^R A to put the contents of register A into the search string.
share|improve this answer
This of course works, but it sounds like the OP may not actually want to search, just get the highlighting. If that's the case, a custom operator would be the way to go. – Jefromi Feb 22 '10 at 18:17
Super - thanks ar... that's exactly what I needed (well, under the constraints that the perfect solution is actually not possible in the first place.) Thanks for the concise solution. – Dan Feb 22 '10 at 20:16
@Jefromi - thanks for your answer (below) and your help. Sorry, I might not have been clear enough in my original question, but I actually wanted this for searching & I actually have the highlighting disabled. Thanks for the input though! – Dan Feb 22 '10 at 20:18
@Dan - Ah, cool. If you're obsessive enough to want to cut out the few extra keystrokes, you could still look into the custom operator, but the ^R method is plenty good - I use it all the time. – Jefromi Feb 22 '10 at 22:08
3  
Just a comment... "Ayw does not yank the word into register 'A'.... it appends the thing being yanked onto the 'a' register. – jkerian Dec 10 '10 at 20:54
show 1 more comment

So basically an extended version of the # and * commands, right? It sounds like you want to define a custom operator (a command that expects a motion). I've never actually done this, but I did find a plugin which looks like it might make it easier to do so. There are some examples provided.

share|improve this answer

I'm using following code for that:

vnoremap <silent>* <ESC>:call VisualSearch('/')<CR>/<CR>
vnoremap <silent># <ESC>:call VisualSearch('?')<CR>?<CR>

    function! VisualSearch(dirrection)
        let l:register=@@
        normal! gvy
        let l:search=escape(@@, '$.*/\[]')
        if a:dirrection=='/'
            execute 'normal! /'.l:search
        else
            execute 'normal! ?'.l:search
        endif
        let @/=l:search
        normal! gV
        let @@=l:register
    endfunction
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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