Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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...

  1. Select all 4 row lines of block by pressing V and then j 4 times.
  2. Indent with >.
  3. Go back one letter with h.
  4. Go to block visual mode with ctrlv.
  5. 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).
  6. Press c. Notice this pretty much indented to the left by one column.
  7. Type out a " vendor_" without the quote. Notice the extra space we had to put back.
  8. 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.
  9. Repeat step 1.
  10. 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.

share|improve this question
3  
Better way: ":%s/^/vendor_/" – Paul Tomblin Mar 3 '12 at 20:47
Thanks for the response. That works if I only want to append a word to every line. But the method I use can be done at any position. Let me add another my example with a more complicated example. – hobbes3 Mar 3 '12 at 20:49
2  
Then highlight the lines you want to change with shift-V, and type an appropriate search and replace command - in the second example, :s/models\./\0whatever./ – Paul Tomblin Mar 3 '12 at 21:06

5 Answers

up vote 32 down vote accepted
  1. Move the cursor to the n in name.
  2. Enter visual block mode (ctrlv).
  3. Press j three times.
  4. Press I.
  5. Type in vendor_.
  6. Press esc.

mini-screencast demonstrating the method

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, e.g. for selecting a inside a tag block (it):

mini-screencast showing the usefulness of the it text object

share|improve this answer
Nice one. I didn't know about I. – Brian Neal Mar 3 '12 at 20:51
Whoa, I didn't know I worked in visual block. Obviously I tried i before but it beeped on me, so I used c since then... and had the described limitation. Thanks for the answer! :-) – hobbes3 Mar 3 '12 at 20:56
7  
Wow, I wish I could give you more than +1 for that animated GIF lol. Nice job! – hobbes3 Mar 4 '12 at 12:05

I would use a macro to record my actions, then repeat it.

  1. Put your cursor on the first letter in name.
  2. Hit qq to start recording into the q buffer.
  3. Hit i to go into insert mode, and type vector_, then hit ESC to leave insert mode.
  4. Now hit 0 to go back to the beginning of the line.
  5. Now hit j to go down.
  6. Now hit 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.

share|improve this answer

Another approach is to use the . (dot) command in combination with I.

  1. Move the cursor where you want to start
  2. Press I
  3. Type in the prefix you want (e.g. vendor_)
  4. Press j to go down a line
  5. Type . to repeat the last edit, automatically inserting the prefix again
  6. Alternate quickly between j and .

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.

share|improve this answer

Suppose you have this file:

something

name
comment
phone
email

somethine else
and more ...

You want to add "vendor_" in front of "name", "comment", "phone", and "email", regardless of where they appear in the file.

:%s/\<\(name\|comment\|phone\|email\)\>/vendor_\1/gc

The c flag will prompt you for confirmation. You can drop that if you don't want the prompt.

share|improve this answer
:%s/^/vendor_/

or am I missing something?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.