From 86c2ac95bb2d2920172182bd5afbd809f0137db9 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Mon, 31 Jul 2017 22:30:57 -0400 Subject: [PATCH] Merge cursors after spawning with mouse Fixes #760 --- cmd/micro/actions.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/micro/actions.go b/cmd/micro/actions.go index a4e6cd0b..40ef8a03 100644 --- a/cmd/micro/actions.go +++ b/cmd/micro/actions.go @@ -1963,6 +1963,7 @@ func (v *View) MouseMultiCursor(usePlugin bool, e *tcell.EventMouse) bool { v.Cursor = &v.Buf.Cursor v.Buf.cursors = append(v.Buf.cursors, c) + v.Buf.MergeCursors() v.Buf.UpdateCursors() if usePlugin {