Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)

share|improve this question

2 Answers

up vote 6 down vote accepted

Well, this works for me:

:args `grep -Rl "hello" *`

Running vim 7.0.305.

share|improve this answer
thanks, I tried using backticks, but vim doesn't recognized them - instead it interprets "`grep" as a filename. Have you got your answer to work for you? If so, I wonder why it doesn't work for me. – 13ren Jun 23 '09 at 16:10
Yeah, worked fine for me. Maybe a version thing. I'm using 7.0.305. – chaos Jun 23 '09 at 16:13
hmmm, :version gives me: VIM - Vi IMproved 7.0 (2006 May 7, compiled Jan 31 2007 18:15:57) Included patches: 1-122 – 13ren Jun 23 '09 at 16:16
OK, I upgraded to version 7.1.314, but same problem. I'm cut-and-pasting your code, so it's not a typo. Maybe it's a compiler option, or a setting. But there's so many, it would be hard to know which one. – 13ren Jun 23 '09 at 16:30
I'm not finding anything linking backtick expansion to compile options. There is something about backtick expansion not working in restricted mode (-Z option at startup), but I don't know why you'd be running under that. – chaos Jun 23 '09 at 16:37
show 6 more comments

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
share|improve this answer
thanks, I tried this, but "grep" is interpreted as a filename... – 13ren Jun 23 '09 at 16:13
It's version 7, but not the very latest. I'm checking for a new version now. – 13ren Jun 23 '09 at 16:18
I just upgraded to version 7.1.314, but same problem. I wonder what the problem is. – 13ren Jun 23 '09 at 16:31
Hi again, it seems it was the quotes around hello - it works fine without them, or if they are escaped. :-) – 13ren Jun 23 '09 at 17:07
Ok, I'm glad you found the issue! Cheers. – Bill Karwin Jun 23 '09 at 17:55

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.