Merge pull request #767 from yannicka/master

Move current line down/up: cursor stay with moved line
This commit is contained in:
Zachary Yedidia
2017-08-03 12:40:50 -04:00
committed by GitHub

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