From 5a005e36b6f9614a78a69d6d20b3735757749800 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Mon, 8 Aug 2016 13:11:34 -0500 Subject: [PATCH] Small fix to OutdentSelection --- cmd/micro/actions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/micro/actions.go b/cmd/micro/actions.go index e2da61be..0617263d 100644 --- a/cmd/micro/actions.go +++ b/cmd/micro/actions.go @@ -362,7 +362,7 @@ func (v *View) OutdentSelection() bool { } } if i == end { - v.Cursor.CurSelection[1] = Loc{endX, end} + v.Cursor.CurSelection[1] = Loc{endX - j, end} } } } else {