vote up 10 vote down star
3

I want to join all lines in a file into a single line. What is the simplest way of doing this? I've had poor luck trying to use substitution (\r\n or \n doesn't seem to get picked up correctly in the case of s/\r\n// on Windows). Using 'J' in a range expression doesn't seem to work either (probably because the range is no longer in 'sync' after the first command is executed).

I tried ":1,$norm! J" but this only did half of the file - which makes sense because it just joins each line once.

flag

6 Answers

vote up 20 vote down check

Ah, I found the answer.

:1,$join

Works like a charm.

EDIT: As pointed out in the comment:

:%join   -or-    :%j

...removes the range.

link|flag
This can also be written as: :%join – jleedev Dec 24 '08 at 17:00
1  
Or abbreviated as :%j – Judge Maygarden Dec 24 '08 at 17:26
You may also want to use the gJ operation instead of j. The gJ operation joins the lines without inserting or removing any spaces. – Kris Kumler Dec 24 '08 at 21:38
I self-answered this because I think this is much quicker than ggVGJ and slightly more elegant. – j0rd4n Jan 6 '09 at 23:44
1  
Note: %j! will join without spaces. (Add an exclamation mark.) You can't use gJ with %. – Rich Sep 5 at 19:03
vote up 24 vote down

Another way:

ggVGJ

"ggVG" visually selects all lines, and "J" joins them.

link|flag
If i could upvote you I would. Examples like this show why vim is so powerful. "gg", "V", "G", "J", are all serparate commands. excellent – theman_on_vista Dec 24 '08 at 16:41
why can't you upvote this? – Nathan Fellman Dec 24 '08 at 20:49
i am not really registered with the site – theman_on_vista Dec 26 '08 at 15:44
and there is a rep requirement for voting. – Martinho Fernandes Jan 6 '09 at 5:26
vote up 3 vote down

Cryptic way:

qqqqqJ@qq@q

(the first three q's clear the q register, the qqJ@qq records a macro to the q register that performs a Join, then calls q, and the last @q runs it.

link|flag
1  
You probably write programs in this language for fun: en.wikipedia.org/wiki/Brainfuck ;) – Judge Maygarden Dec 24 '08 at 17:24
Of course. :-p reddit.com/r/programming/… – jleedev Dec 25 '08 at 7:36
Why would you want to clear the q register first, when you overwrite it anyway. That's like doing a bunch of no-ops to make your command longer. – Alf Jan 7 '09 at 8:25
vote up 0 vote down

I would have done 10000P

EDIT: I meant 10000J

link|flag
What would you be pasting 10000 times? – Judge Maygarden Dec 24 '08 at 17:25
Err, been a bit long. I meant 10000J – Joshua Dec 24 '08 at 20:43
I see what your are saying, but that is kind of like watering a flower pot with a fire hose. – j0rd4n Jan 4 '09 at 22:01
Kudos... get er done! – ojblass Mar 25 at 6:11
vote up 3 vote down

You can do it in three fewer keystrokes:

:1,$j

isn't ed grand?

link|flag
1  
:%j is 5 fewer... – Judge Maygarden Dec 24 '08 at 17:27
vote up 2 vote down

I’m surprised no one even mentioned the other way:

:%s/\n/ /

I am equally surprised that no one pointed out that the range 1,$ has a shorthand that’s written %.

(This doesn’t do the same thing as joining the lines, but depending on circumstances that may in fact be more appropriate.)

link|flag

Your Answer

Get an OpenID
or

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