vote up 4 vote down star
4

Say I have 10 lines and I want to prepend text to some word that occurs in those lines? It does not have to be at the beginning of the line.

sdfsd   foo sdfsd
sfsd    foo fsdf
sdfsdf  foo  sdfsdf

to

sdfsd   bar(foo sdfsd
sfsd    bar(foo fsdf
sdfsdf  bar(foo  sdfsdf

Is it also possible to not only prepend the "bar(" but actually surround "foo" with "bar(foo)"?

I would also like a quick way to append // comments to multiple lines (C-style comments).

I use vim 7.2/gvim.

flag
C style comments are /* */ BCPL style comments are // – William Pursell Jul 23 at 23:06
ohh, who voted to close? – Sasha Jul 24 at 1:18
Uh oh, Sasha is in the penalty box again. – George Stocker Jul 24 at 18:32
For five months?? Well, I guess the two-month suspension didn't help. – mmyers Jul 29 at 22:06

5 Answers

vote up 8 vote down check

Go to the first foo, press Ctrl-V to enter visual block mode and press "down" until all the lines with "foo" are marked. Then press I to insert at the beginning (of the block). The inserted characters will be inserted in each line at the left of the marked block.

To insert at the end, press again Ctrl-V, move up/down to mark all affected lines and then press "end" to extend the selection until the end of the lines. Now you can press A to append at the end of all the lines, just like previously with I.

The visual selection can also be done with normal movement commands. So to comment a whole block in C you could move to the opening brace and type <Ctrl-V>%I//<Esc>.

link|flag
1  
Just an addition: if Ctrl-V does not start visual block mode in Vim on Windows, one should use Ctrl-Q instead. – Paul Jul 23 at 20:53
1  
A variation of then answer is to mark visual block with shift+V thenalter the block in ex mode: :'<,'>s/^/prexix_text/ :'<,'>s/$/suffix_text/ Note than "'<,'>" is printed automatically by vim when you press ":". – idimba Jul 23 at 20:57
To uncomments use visual block (mark with Ctrl+V). One the column with comment sign "//" is marked press "d" to remove the comments. dont forget about C++ comments (/**/) too :) – idimba Jul 23 at 20:59
vote up 11 vote down

To answer your first question, the below

:%s/foo/bar(&)/g

will look for foo, and surround the matched pattern with bar(). The /g will do this multiple times in one line.

Since you're just matching foo, you could do a simple :s/foo/bar(foo)/g. The above will work, however, if you decide to match on a regular expression rather than a simple word (e.g. f[a-z][a-z]). The '&' in the above represents what you've matched.

link|flag
I had a big long answer with macros. This is way easier :-) – Brian Ramsay Jul 23 at 20:33
does this work across multiple lines? – mpbloch Jul 23 at 20:34
How do you do it for multiple lines? A practical case is when you have a block of code consisted of similar lines which require this substitution. – Sasha Jul 23 at 21:11
It sure looks like it works across all lines... note the :%s and /g. – ojrac Jul 23 at 21:15
1  
The text between the : and the s determines which lines it operates on. Nothing means just the current line. 1,30 means lines 1 to 30 (inclusive). '<,'> means the lines in the current visual selection. – rampion Jul 24 at 1:12
show 4 more comments
vote up 4 vote down

To prefix a set of lines I use one of two different approaches:

One approach is the block select (mentioned by sth). In general, you can select a rectangular region with ctrl-V followed by cursor-movement. Once you've highlighted a rectangle, pressing shift-I will insert characters on the left side of the rectangle, or shift-A will append them on the right side of the rectangle. So you can use this technique to make a rectangle that includes the left-most column of the lines you want to prefix, hit shift-I, type the prefix, and then hit escape.

The other approach is to use a substitution (as mentioned by Brian Agnew). Brian's substitution will affect the entire file (the % in the command means "all lines"). To affect just a few lines the easiest approach is to hit shift-V (which enables visual-line mode) while on the first/last line, and then move to the last/first line. Then type:

:s/^/YOUR PREFIX/

The ^ is a regex (in this case, the beginning of the line). By typing this in visual line mode you'll see '<,'> inserted before the s automatically. This means the range of the substitution will be the visual selection.

Extra tip: if your prefix contains slashes, you can either escape them with backslash, or you can use a different punctuation character as the separator in the command. For example, to add C++ line comments, I usually write:

:s:^:// :

For adding a suffix the substitution approach is generally easier unless all of your lines are exactly the same length. Just use $ for the pattern instead of ^ and your string will be appended instead of pre-pended.

If you want to add a prefix and a suffix simultaneously, you can do something like this:

:s/.*/PREFIX & SUFFIX/

The .* matches the whole line. The & in the replacement puts the matched text (the whole line) back, but now it'll have your prefix and suffix added.

BTW: when commenting out code you'll probably want to uncomment it later. You can use visual-block (ctrl-V) to select the slashes and then hit d to delete them, or you can use a substitution (probably with a visual line selection, made with shift-V) to remove the leading slashes like this:

:s:// ::
link|flag
vote up 0 vote down

For the C-style comments, use the regexp answer by Brian, and match on line ending $, and insert away.

link|flag
vote up 0 vote down

Yet another possibility (probably not-so-useful in your test case, but handy in other situations) is to cordon off the area you want to change with marks.

  • Put the cursor anywhere in the top line and press < 'a >. (That's supposed to be an "apostrophe" and an "a")
  • Put the cursor anywhere in the last line and press < 'b >
  • Issue the command :'a,'b s/foo/bar(&)/

I usually like visual block mode if everything is visible on the screen, and I usually prefer marks if the start and stop are separated by many screens.

link|flag

Your Answer

Get an OpenID
or

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