Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

in vim, how to set "args" to the result of a "grep -l"?

To illustrate, here's how to do it from the command-line:

vim `grep "hello" * -Rl`

This opens vim with all the files that have "hello" in them (-l gives the filenames alone). I want to do the same thing, but from within vim. Conceptually, something like this (which doesn't work):

:args !grep "hello" * -Rl

I'm open to completely different approaches to achieve this; I'd just like it to be on one line (so it's easy to edit and redo).


The answer is to simply use backticks - but with a key proviso! The below does not work for me, because of the quotes around hello:

:args `grep "hello" * -Rl`

But it works if I remove them or escape the quotes:

:args `grep hello * -Rl`
:args `grep \"hello\" * -Rl`

(this was buried in the comments after chaos' answer - I added them here to make them more visible, in case anyone else had this problem)

like image 783
13ren Avatar asked Jun 23 '09 16:06

13ren


2 Answers

Well, this works for me:

:args `grep -Rl "hello" *`

Running vim 7.0.305.

like image 172
chaos Avatar answered Nov 08 '22 16:11

chaos


Try the args command:

:ar[gs] `grep -Rl "hello" .`

If the backticks aren't working for you, are you use you're using a current version of vim?

:version
like image 35
Bill Karwin Avatar answered Nov 08 '22 15:11

Bill Karwin