This tip presents different methods showing how to insert a list of increasing numbers. Making a list[] It is easy to insert a list of ascending numbers, for example, this command inserts five lines after the current line: :put =range(11,15) The five lines are: 11 12 13 14 15 If wanted, the lines can be inserted after a particular line number, for example :123put =range(11,15) inserts them after l