On 2012-05-27, Ben Fritz wrote:
> On Saturday, May 26, 2012 3:00:10 PM UTC-5, Gary Johnson wrote:
> > On 2012-05-26, Lech Lorens wrote:
> > > The attached patch adds the "j" flag to 'formatoptions' which is
> > > described in todo.txt as follows:
> > > 7 Add 'j' flag to 'formatoptions': Remove co
On Saturday, May 26, 2012 3:00:10 PM UTC-5, Gary Johnson wrote:
> On 2012-05-26, Lech Lorens wrote:
> > The attached patch adds the "j" flag to 'formatoptions' which is
> > described in todo.txt as follows:
> > 7 Add 'j' flag to 'formatoptions': Remove comment leader when joining
> > lines.
>
>
Lech Lorens wrote:
> The attached patch adds the "j" flag to 'formatoptions' which is
> described in todo.txt as follows:
> 7 Add 'j' flag to 'formatoptions': Remove comment leader when joining lines.
>
> It makes it possible to perform a join on the following lines:
> #v+
> /*
> * Comment
>
On 2012-05-26, Lech Lorens wrote:
> The attached patch adds the "j" flag to 'formatoptions' which is
> described in todo.txt as follows:
> 7 Add 'j' flag to 'formatoptions': Remove comment leader when joining lines.
Thank you! I'm continually removing comment leaders in the middle
of joined com
The attached patch adds the "j" flag to 'formatoptions' which is
described in todo.txt as follows:
7 Add 'j' flag to 'formatoptions': Remove comment leader when joining lines.
It makes it possible to perform a join on the following lines:
#v+
/*
* Comment
*/
#v-
to obtain:
#v+
/* Comment */
#