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 th
You can read it from vim with
:r !dir (for example)
AFAIK, there is no gvim on Mac OS.
If you are using MacVim on mac, this is what I do:
dir | /Applications/MacVim.app/Contents/MacOS/Vim -
When Vim starts in the terminal, then type
<esc>:gui
That should start the MacVim (gui version of vim)
If you're already in Vim you can use the r
command to read like this:
:r !<cmd>
E.g.
:r !dir
sure:
dir | gvim -
the -
option tells vim
to open stdin
This works for Windows and Linux versions.