How can I prepend text to multiple lines in vim?

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.

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 %I//.

2 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 '09 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 ":". – dimba Jul 23 '09 at 20:57 1 To uncomments use visual block (mark with Ctrl+V).

One the column with comment sign "//" is marked press "d" to remove the comments. Don't forget about C++ comments (/**/) too :) – dimba Jul 23 '09 at 20:59 It's worth noting in Linux I had to escape out of Insert mode before the prefix applied to all lines, and it is a capital I needed to go into insert mode from Visual mode - i.e. Shift+I, type prefix, Escape, Escape.

– Joshua Enfield Jul 23 '09 at 7:17.

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. Fa-za-z). The '&' in the above represents what you've matched.

I had a big long answer with macros. This is way easier :-) – Brian Ramsay Jul 23 '09 at 20:33 does this work across multiple lines? – maxwellb Jul 23 '09 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 '09 at 21:11 It sure looks like it works across all lines... note the :%s and /g. – ojrac Jul 23 '09 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 23 '097 at 1:12.

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.

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

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 . (That's supposed to be an "apostrophe" and an "a") Put the cursor anywhere in the last line and press 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.

Normal to the rescue! :%norm Wibar( :%norm WEa) :norm(al) replays the commands as if you had typed them: W - goes to the next word I - starts insertion mode bar( - types the sequence 'bar(' Or in one line: :%norm Wibar(ctrlvESCEa) If you're running Windows then type ctrlq instead of ctrlv.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions