Hello,
Is this a bug, or is it something that cannot be fixed?
1) gvim.exe -u NONE -U NONE --noplugin
2) :set smartindent tw=40 fo=tcq
3) Type text -- at least, say, 60 characters.
Vim will insert linebreaks.
4) Join the pieces to have a single long line
5) yyp to get two lines each with 60 or more characters.
6) move the cursor to, say, 50th column on first line.
7) <ctrl-v>, select a two-line block, say 2x2
8) hit c and type mymy
Expect: selected two line block will become:
mymy
mymy
Issue: the first line breaks and only it gets mymy;
second line remains as-is.
--Suresh