Can I redirect output of a program to gvim?

前端 未结 4 1937
耶瑟儿~
耶瑟儿~ 2020-12-24 05:12

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

4条回答
  •  情话喂你
    2020-12-24 05:54

    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

    :gui
    

    That should start the MacVim (gui version of vim)

提交回复
热议问题