Re: Automating paragraphs (was Re: Dump help pages)

2021-04-20 Thread Julius Hamilton
Thanks. This is pretty complicated, but probably what I had in mind. So, some basic clarification - You defined a new command called Jp. You specify a line range, and it starts at every non blank line and joins all following non blank lines. That's quite good. Thanks very much. What about the

Re: How long does it take to receive a registration code?

2021-04-20 Thread Bram Moolenaar
Dustin Hacker wrote: > I registered vim yesterday to support development. However, I have yet > to receive my registration code. > > I made sure the amount was over €10 and that my account was registered > on the website. > > The transaction is not showing up in my account either. > > How lon

Re: Automating paragraphs (was Re: Dump help pages)

2021-04-20 Thread BPJ
I wrote: I have the following in my .vimrc : > > " Command to join lines in all paragraphs in a range/the whole buffer (Jp > == join paras) > :com! -range=% Jp ,g/^\s*\S/ .,/^\s*$/-join > > " Explanation: > " :g/^\s*\S/ " Go to the first in each sequence of non-blank lines > " Actually

Re: Automating paragraphs (was Re: Dump help pages)

2021-04-20 Thread BPJ
Den fre 16 apr. 2021 19:27Stan Brown skrev: > On 2021-04-16 09:42, Julius Hamilton wrote: > > > At the beginning of a paragraph which has been separated mid-sentence > > onto separate lines, how might I automate the process of calling CTRL-J > > until all the separated lines in the paragraph have