I run Windows XP and gvim7.2. I want to inspect a large (130 MB) XML file with VIM. Is it possible to simply open the first 1000 lines of the file?

link|improve this question

68% accept rate
feedback

3 Answers

up vote 7 down vote accepted

the main problem of vim is not the file size, but the syntax highlighting of the file. i use the 'large file' script to disable such timeconsuming things when working on large files.

link|improve this answer
feedback

Also you can just:

head -1000 large_file.xml | vim -
link|improve this answer
head/tail for windows: unxutils.sourceforge.net – zcrar70 Jun 22 '11 at 11:09
feedback

You may use head or tail to cut specific parts of the file and then open them in vim. In your specific example, you could do:

head -1000 large_file.xml > small_file.xml

Then you would be able to open small_file.xml in gvim.

This, of course, you have the head and tail utilities installed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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