Re: Joining multiple lines changed behavior for empty line

2019-12-18 Fir de Conversatie Zdenek Dohnal
I tested the current patchlevel and it works as before, thank you for the fix! -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this me

Re: Joining multiple lines changed behavior for empty line

2019-12-17 Fir de Conversatie Bram Moolenaar
Zdenek Dohnal wrote: > Vim no longer joins multiple lines the same way as it did when empty line > is present: > > Previous behavior: > > 1) File: > a > b > c > > d > e > f > > 2) :%j > > Actual result: > > a b cd e f > > Previous result: > > a b c d e f > > Version 8.2, patchlevel 12,

Re: Joining multiple lines changed behavior for empty line

2019-12-16 Fir de Conversatie Christian Brabandt
On Mo, 16 Dez 2019, Zdenek Dohnal wrote: > Hi, > > Vim no longer joins multiple lines the same way as it did when empty line > is present: > > Previous behavior: > > 1) File: > a > b > c > > d > e > f > > 2) :%j > > Actual result: > > a b cd e f > > Previous result: > > a b c d e f >

Joining multiple lines changed behavior for empty line

2019-12-16 Fir de Conversatie Zdenek Dohnal
Hi, Vim no longer joins multiple lines the same way as it did when empty line is present: Previous behavior: 1) File: a b c d e f 2) :%j Actual result: a b cd e f Previous result: a b c d e f Version 8.2, patchlevel 12, ran with -u NONE -U NONE -N -i NONE . Is it expected or a bug? --