I was wondering if there's a way to see the output of any command, straight inside vim, rather than first redirecting it into a file and then opening that file.

E.x. I need something like $ gvim < diff -r dir1/ dir2/

This gives ambiguous redirect error message

I just want to see the diffs between dir1 and dir2 straight inside gvim.

Can any one provide a nice hack?

Thanks Aman Jain

link|improve this question
feedback

8 Answers

diff file1 file2 | vim -R -

The -R makes it read-only so you don't accidentally modify the input (which may or may not be your desired behavior). The single dash tells vim to reads its input over standard input. Works for other commands, too.

link|improve this answer
feedback

Also, when already in Vim:

:r! diff file1 file2
link|improve this answer
feedback

vim -d file1 file2

link|improve this answer
feedback

jst use gvimdiff instead
or vimdiff
to paste the output of a command straight into vim, for example ls, try
:%r!ls

link|improve this answer
If you have an alias on vim (to a custom installation, maybe), vimdiff will use the site-wide vim. You can use vim -d (or set up another alias) to get "diff" behavior with your custom vim. – Peter Stone Oct 23 '08 at 18:11
feedback

BTW, there is a DirDiff plugin.

link|improve this answer
feedback

Although I would also suggest vimdiff or vim -d for the case of looking at a diff, I just have to share this (more general) approach for using vim usage in pipes: vipe (from the moreutils package in Ubuntu).

For example:

find -name '*.png' | vipe | xargs rm

would allow you to first edit (in vim) the list of .png files found before passing it to xargs rm.

link|improve this answer
feedback

You can do this with

diff -r dir1/ dir2/ | gvim -

the '-' option to vim (or gvim) tells vim to open STDIN

link|improve this answer
feedback

I often use vimdiff -g <file1> <file2>

link|improve this answer
feedback

Your Answer

 
or
required, but never shown