up vote 7 down vote favorite
3
share [g+] share [fb]

I want to redirect the output of some Windows program directly to gvim basically for searching the output. Say for example the result of findstr cmd. Is it possible to do this without dumping it to a file and subsequently loading that file in gvim?

link|improve this question

feedback

3 Answers

up vote 19 down vote accepted

sure:

dir | gvim -

the - option tells vim to open stdin

This works for Windows and Linux versions.

link|improve this answer
Wow. Must remember this. Cheers Nathan – bfabry May 13 '09 at 6:41
feedback

If you're already in Vim you can use the r command to read like this:

:r !<cmd>

E.g.

:r !dir
link|improve this answer
feedback

You can read it from vim with

:r !dir (for example)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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