Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 am certain that foo.c contains more than 1000 lines.

share|improve this question

3 Answers

up vote 32 down vote accepted
:r! sed -n 147,227p /path/to/foo/foo.c
share|improve this answer

The {range} refers to the destination in the current file, not the range of lines in the source file.

After some experimentation, it seems

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

means insert the contents of /path/to/foo/foo.c after line 227 in this file. i.e.: it ignores the 147.

share|improve this answer

You will need to:

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

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

share|improve this answer
this is so much typing , sorry :) – Aman Jain Oct 27 '08 at 15:28
Not a good solution - not compared with the sed solution. – Jonathan Leffler Oct 27 '08 at 16:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.