vote up 6 vote down star
1

In vim when my cursor is on the first line I can press:

100dd

to delete the first 100 lines.

But how do I delete all lines except the last 100 lines?

flag

4 Answers

vote up 20 vote down check

In normal mode:

G100kdgg

In other words:

G     -> go to last line
100k  -> go up 100 lines
dgg   -> delete to top of file
link|flag
simple and elegant. I like it! – technomalogical Aug 10 at 17:51
vote up 5 vote down

An alternative general purpose solution:

:%!tail -100

You can use any shell command after the ! to arbitrarily modify the current buffer. Vim starts the command and feeds the current file to stdin, and reads the new buffer from stdout.

link|flag
vote up 3 vote down

Could you elaborate on that?

:1,$-3d

link|flag
I meant 100 of course, sorry. See the edit for an explanation. – Martin v. Löwis Aug 10 at 0:57
should be a comment, not an answer – David Claridge Aug 10 at 1:02
2  
He can't comment, bummer, he has very little recourse other than to watch and hope things get explained. – Evan Aug 10 at 1:04
Oh right, not enough rep... slightly broken system. I retract my -1 – David Claridge Aug 10 at 4:32
Thanks for the explanation :) – echen Aug 10 at 17:05
vote up 23 vote down

In ex mode:

:1,$-100d

Explanation: ":" puts the editor in "ex mode". The d command of ex mode deletes lines, specified as a single line number, or a range of lines. $ is the last line, and arithmetic can be applied to line numbers.

link|flag
FWIW this is the better answer, IMHO – Nathan Fellman Aug 22 at 8:15

Your Answer

Get an OpenID
or

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