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

It is really hard to phrase the problem. In Vim, I have the following text.

key => value1
key => value2
key => value1111
key => value12
key => value1122222

I would like to add "," at the end of each line. The previous text will become the following:

key => value1,
key => value2,
key => value1111,
key => value12,
key => value1122222,

Does anyone know how to do this? Is it possible to use visual block to accomplish this?

share|improve this question
Similar question here. – glts Jul 3 '12 at 11:47

8 Answers

up vote 13 down vote accepted

This will do it to every line in the file:

:%s/$/,/

If you want to do a subset of lines instead of the whole file, you can specify them in place of the %. One way is to do a visual select and then type the :. It will fill in :'<,'> for you, then you type the rest of it so it looks like this:

:'<,'>'s/$/,/
share|improve this answer

The substitute command can be applied to a visual selection. Make a visual block over the lines that you want to change, and type :, and notice that the command-line is initialized like this: :'<,'>. This means that the substitute command will operate on the visual selection, like so:

:'<,'>s/$/,/

And this is a substitution that should work for your example, assuming that you really want the comma at the end of each line as you've mentioned. If there are trailing spaces, then you may need to adjust the command accordingly:

:'<,'>s/\s*$/,/

This will replace any amount of whitespace preceding the end of the line with a comma, effectively removing trailing whitespace.

The same commands can operate on a range of lines, e.g. for the next 5 lines: :,+5s/$/,/, or for the entire buffer: :%s/$/,/.

share|improve this answer

Another solution, using another great feature:

:'<,'>norm A,

See :help :normal.

share|improve this answer
4  
I like these answers that demonstrate a lesser known feature of vim. – Swiss Jul 3 '12 at 8:33
@Swiss, you will like this comment, then. – romainl Jul 3 '12 at 8:48
@Swiss, you might also like udioca's exposé on :normal. I found it informative! – Conner Jul 21 '12 at 20:52
Didn't know about this subreddit. Thanks. – romainl Jul 21 '12 at 21:02

ex mode is easiest:

:%s/$/,/

: - enter command mode
% - for every line
s - substitute
/$ - the end of the line
/,/ - change it to a comma
share|improve this answer

There is in fact a way to do this using Visual block mode. Simply pressing $A in Visual block mode appends to the end of all lines in the selection. The appended text will appear on all lines as soon as you press Esc.

So this is a possible solution:

vip<C-V>$A,<Esc>

In normal mode, Visual select a paragraph vip, switch to Visual block mode CTRLV, append to all lines $A a comma ,.

Edit: The documentation is at :h v_b_A. There is even an illustration of how it works in the examples section: :h v_b_A_example.

share|improve this answer
Huh, doesn't work for me... New feature in a version newer than 7.2? Sounds nice. – weronika Jul 4 '12 at 5:49
No, this is standard Vim: Select some lines in Visual block mode (with C-V) then move the cursor to the end of the line $ and append to all of them A. You'll love :h v_b_A, which is really thorough. – glts Jul 4 '12 at 8:57
Oh, I see what's going on! I usually use Ctrl-C instead of <Esc> to exit insert mode, and apparently with Ctrl-C this doesn't work! How odd. – weronika Jul 4 '12 at 18:04
:%s/$/,/g

$ matches end of line

share|improve this answer
2  
That will add $ to the line as well, not just ,. – ZyX Jul 3 '12 at 3:38
1  
/g is used to perform the substitution on every occurrence in a line. Because there's only one $ in a line you can safely drop it. – romainl Jul 3 '12 at 11:32
Yeah my mistake on the ,$. and the /g is from habbit, and yes it is optional. – kalhartt Jul 3 '12 at 14:05

If you want to add ',' at end of the lines starting with 'key', use:

:%s/key.*$/&,
share|improve this answer
Or :g/key/s/$/,. See :help :global. – romainl Jul 3 '12 at 8:45

I have <M-DOWN>(alt down arrow) mapped to <DOWN>. so that I can repeat the last command on a series of lines very quickly. with this mapping I can:

A,<ESC>

And then hold alt while pressing down repeatedly to append the comma to the end of each line.
This works well for me because it allows very good control over what lines do and do not get the change.
(I also have the other arrows mapped similarly to allow for easy repeating of .)

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.