How can I add line numbers to a range of rows in vim? Not as in ":set nu" - this just displays numbers, but doesn't add them to the file.
|
|
|
With
|
|||||||||||||||||||
|
|
Or, if you want just a subselection, visually select the area, and type this:
That will automatically put the visual selection markers in, and will look like this after you've typed it:
In order to erase the line numbers, I recommend using |
|||
|
On a GNU system: with the external nl binary. :%!nl |
|||||
|
|
With Unix-like environment, you can use cat or awk to generate a line number easily, because vim has a friendly interface with shell, so everything work in vim as well as it does in shell.
or
But, if you use vim in MS-DOS, of win9x, win2000, you loss these toolkit. here is a very simple way to archive this only by vim:
Or, a sequence composed with alphabet is as easy as above:
You can also use a subst:
You can also only want to print the lines without adding them to the file:
|
|||||||||||
|
|
The "VisIncr" plugin is good for inserting columns of incrementing numbers in general (or letters, dates, roman numerals etc.). You can control the number format, padding, and so on. So insert a "1" in front of every line (via |
|||
|
|
|
First, you can remove the existing line numbers if you need to:
Then, you can add line numbers. NR refers to the current line number starting at one, so you can do some math on it to get the numbering you want. The following command gives you four digit line numbers:
|
|||
|
|
