Re: v_p split line at unexpected place when replacing last character with line register.

2015-06-03 Fir de Conversatie Bram Moolenaar
Yukihiro Nakadaira wrote: > v_p split line at unexpected place when replacing last character with line > register. > > Steps to reproduce: > > $ vim -u NONE > iaaa > bbb > cccggYj$vp > > Result: > > 1 aaa > 2 b > 3 aaa > 4

v_p split line at unexpected place when replacing last character with line register.

2015-05-22 Fir de Conversatie Yukihiro Nakadaira
v_p split line at unexpected place when replacing last character with line register. Steps to reproduce: $ vim -u NONE iaaa bbb cccggYj$vp Result: 1 aaa 2 b 3 aaa 4 b 5 ccc Expected: 1 aaa 2 bb 3 aaa 4 5 ccc I wrote patch for this problem. Please check the