In Vim how do I effectively insert the same characters across multiple lines?
Sometimes I want to edit a certain visual block of text across multiple lines.
For example I would take a text that looks like this:
name
comment
phone
email
And make it looke like this
vendor_name
vendor_comment
vendor_phone
vendor_email
Currently the way I would do it now is...
" vendor_"
without the quote. Notice the extra space we had to put back. I don't need to indent if there is at least one column of whitespace before the words. I wouldn't need the whitespace if I didn't have to clear the visual block with c.
But if I have to clear, then is there a way to do what I performed above without creating the needed whitespace with indentation?
Also why does editing multiple lines at once only work by exiting out of insert mode with esc over ctrlc?
Edit:
Here is a more complicated example
name = models.CharField( max_length = 135 )
comment = models.TextField( blank = True )
phone = models.CharField( max_length = 135, blank = True )
email = models.EmailField( blank = True )
to
name = models.whatever.CharField( max_length = 135 )
comment = models.whatever.TextField( blank = True )
phone = models.whatever.CharField( max_length = 135, blank = True )
email = models.whatever.EmailField( blank = True )
in this example I would perform the vertical visual block over the .
, then reinsert it back during insert mode, ie type .whatever.
. Hopefully now you can see the drawback to this method. I am limited to only selecting a column of text that are all the same in a vertical position .
n
in name
. I
(capital i). vendor_
. An uppercase I
must be used rather than a lowercase i
because the lowercase i
is interpreted as the start of a text object, which is rather useful on its own, eg for selecting a inside a tag block ( it
):
Another approach is to use the . ( dot
) command in combination with I.
vendor_
) I find this technique is often faster than the visual block mode for small numbers of additions and has the added benefit that if you don't need to insert the text on every single line in a range you can easily skip them by pressing extra j's.
Note that for large number of contiguous additions, the block approach or macro will likely be superior.
I would use a macro to record my actions, then repeat it.
qq
to start recording into the q
buffer. i
to go into insert mode, and type vector_
, then hit ESC
to leave insert mode. 0
to go back to the beginning of the line. j
to go down. q
again to stop recording. You now have a nice macro.
Type 3@q
to execute your macro 3 times to do the rest of the lines.
上一篇: 简单的VIM命令,你希望你早些时候知道