vim — How to read range of lines from a file into current buffer

前端 未结 7 1924
梦毁少年i
梦毁少年i 2021-01-30 03:49

I want to read line n1->n2 from file foo.c into the current buffer.

I tried: 147,227r /path/to/foo/foo.c

But I get: \"E16: Invalid range\", though I

7条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-30 04:28

    You will need to:

    :r /path/to/foo/foo.c
    :d 228,$
    :d 1,146
    

    Three steps, but it will get it done...

提交回复
热议问题