Anyone having undo problem?
In some scenarios, undoing a paste operation removes an empty line. For example, if editor contains following text:
abc
abc
<empty-line>
def
and i select first two lines using mouse, copy them, and paste in front of the second line, i get this:
abc
abcabc
abc
<empty-line>
def
now if i press ctrl-z, i get following:
abc
abc
def
whereas i should've gotton...
abc
abc
<empty-line>
def
I figured couple of other scenarios where an empty line is removed while undoing text operations. Should this be the expected behavior?
