Move current line down/up: cursor stay with moved line

This commit is contained in:
Yannick Armand 2017-08-03 12:02:07 +02:00
parent ed9bc66060
commit 9dd1df36d5

View file

@ -1165,7 +1165,6 @@ func (v *View) MoveLinesUp(usePlugin bool) bool {
v.Cursor.Loc.Y,
v.Cursor.Loc.Y+1,
)
v.Cursor.UpN(1)
messenger.Message("Moved up current line")
}
v.Buf.IsModified = true
@ -1204,7 +1203,6 @@ func (v *View) MoveLinesDown(usePlugin bool) bool {
v.Cursor.Loc.Y,
v.Cursor.Loc.Y+1,
)
v.Cursor.DownN(1)
messenger.Message("Moved down current line")
}
v.Buf.IsModified = true