How do I dump output of an external command to a new buffer in Vim?

前端 未结 3 1327
醉梦人生
醉梦人生 2021-02-15 12:04

:enew lets me create a new buffer and :.!> lets me dump the output of an external command to that buffer. Can I combine the tw

3条回答
  •  一个人的身影
    2021-02-15 12:45

    :.! actually pipes the current line through the external command, possibly losing the line. You may wish to use :r !—Note the space before the !. I often use :0r !cmd so that the output is inserted at the start of the buffer.

提交回复
热议问题