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...
- Select all 4 row lines of block by pressing V and then j 4 times.
- Indent with >.
- Go back one letter with h.
- Go to block visual mode with ctrlv.
- Select down 4 rows by pressing j 4 times. At this point you have selected a 4x1 visual block of whitespace (4 rows, 1 cols).
- Press c. Notice this pretty much indented to the left by one column.
- Type out a
" vendor_"without the quote. Notice the extra space we had to put back. - Press esc. This is one of the very few times I use esc to get out of insert mode. ctrlc would only edit the first line.
- Repeat step 1.
- Indent the other way with <.
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.


:s/models\./\0whatever./– Paul Tomblin Mar 3 '12 at 21:06