meow-edit / meow

Yet another modal editing on Emacs / 猫态编辑
GNU General Public License v3.0
1.07k stars 128 forks source link

bug of (meow-line -1) #563

Open jixiuf opened 3 months ago

jixiuf commented 3 months ago

if the selection is like the following (M: mark, P: point)

M.................
....................
.............P

negative-argument + meow-line should become:

M.................
....................P
.............

but got

M.................
P....................
.............
DogLooksGood commented 2 months ago

I think it should become

P............... Add one more line in the beginning
.................
....................
.............M

According to the rules. As meow-line create an expandable selection which should be expanded when meet the same command.

Current behavior is wrong, but it should be fixed in a different way from PR #564