vote up 3 vote down star
1

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?

flag

3 Answers

vote up 15 vote down check

sure:

dir | gvim -

the - option tells vim to open stdin

This works for Windows and Linux versions.

link|flag
Wow. Must remember this. Cheers Nathan – beaufabry May 13 at 6:41
vote up 10 vote down

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

:r !<cmd>

E.g.

:r !dir
link|flag
vote up 3 vote down

You can read it from vim with

:r !dir (for example)
link|flag

Your Answer

Get an OpenID
or

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