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?
d/hellowill delete from the cursor to the nexthellofor example.d''will delete from the current position to the line of the last position, etc. – Alok Feb 12 '10 at 9:33