Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know that to delete n lines, the command is [n]dd, where n is the number of lines to delete.

But what if I want to delete up to a certain line number? Say, if I'm on line 65 and I want to delete up to line 126 without having to do the math, how could I do that?

share|improve this question
1  
The "delete", "yank", etc., commands are very generic in vim: they can take any "movement operator". d/hello will delete from the cursor to the next hello for example. d'' will delete from the current position to the line of the last position, etc. – Alok Feb 12 '10 at 9:33

4 Answers

up vote 27 down vote accepted

d126G

Delete, line number, go.

A lot of commands in Vim can be followed by a move command to specify the scope.

share|improve this answer
+1'ing this as it requires fewer characters (and at least to me, fits far more into the "language of vim") than the other options. – Amber Feb 12 '10 at 8:55
I like this because you don't have to use the : command, which seems relatively clumsier. – neuromancer Feb 12 '10 at 9:45
Exvept that you can log your ':' commands to some file (viminfo), and it can be later reused. I do love 'q:' then '/searchforsomething' then hit enter... – Zsolt Botykai Feb 12 '10 at 10:52
:,126d

all done.

share|improve this answer
:.,126d

. is the actual line. If you want delete from the next line, you can use .+1 instead.

share|improve this answer
+1 because that's how I do it ;-) – ammoQ Feb 12 '10 at 9:32

Use this command:
65,126d

share|improve this answer
This will delete lines from 65 to 126, but author wants to delete only line #126 – Vestel Feb 12 '10 at 8:58
3  
Nope, the author wrote "delete up to". – Zsolt Botykai Feb 12 '10 at 9:00
@Vestel,In that case none of the above answers are doing that:P – sud03r Feb 12 '10 at 9:06
Actually they do. – neuromancer Feb 12 '10 at 9:42

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.