Fix moving to end of line on cursor down

This commit is contained in:
Zachary Yedidia 2017-09-15 16:09:33 -04:00
parent 5b426aee86
commit 2f587c6d48

View file

@ -258,7 +258,7 @@ func (c *Cursor) UpN(amount int) {
runes := []rune(c.buf.Line(c.Y))
c.X = c.GetCharPosInLine(proposedY, c.LastVisualX)
if c.X > len(runes) {
if c.X > len(runes) || (amount < 0 && proposedY == c.Y) {
c.X = len(runes)
}