For example, I have some code and I use "*" to search for something within that code. Not finding what I want in that file, I'd like to use something like ack or grep to search for it within the local directory. I know I can do :! ack whatever to do the search from within vim, but what I'd like to know is is there a way to replace whatever with the currently searched for word within vim.
| |||
|
feedback
|
|
Riffing off of Tim Henigan's answer, put this in your .vimrc
Now when you hit :!grep CTRL-R / file-list | |||||||||||
feedback
|
|
You can use Ctrl-r followed by / to insert the last-search register.
See this Vim Tips Wiki entry for more info. Update: However, the This could be used to work around your issue rather than using the custom macro in rampion's answer. | |||||||
feedback
|
|
I haven't found a way to (easily) pass the contents of a search register to an external program, without resorting to key mappings and eval statmements. However, you can use
or
| |||||||||||
feedback
|
|
You can yank the word into a register and use the @regnum in the command mode line "1yw :!grep @1 | |||
|
feedback
|