In Vim,
How do i add a word at the beginning of all lines? Also how do i add it at end?
Eg.. If i have
A
B
C
D
I want to make it to
int A =
int B =
etc..
|
In Vim, How do i add a word at the beginning of all lines? Also how do i add it at end? Eg.. If i have
I want to make it to
etc.. |
||||
|
|
|
use visual block mode (Ctrl-v) to select the column you want, and then hit I, type the characters you want, and then hit Esc So in this case, you'd put your cursor on This works for anywhere in the document, beginning of line or end of line.
|
|||||||||
|
|
If you need to copy just the first word, then do:
If you want to preserve indentation, then do:
|
|||
|
|
|
A global substitute should do i:
This is how it works: in the second part of the substitution (ie in the If you have empty lines (in which you don't want to have any replacements), you could go with a
|
|||||||||||
|