Remove debug messages

This commit is contained in:
Zachary Yedidia
2017-06-12 12:12:26 -04:00
parent c45ff4dd4f
commit 8d268ef021

View File

@@ -1849,7 +1849,6 @@ func (v *View) SpawnMultiCursor(usePlugin bool) bool {
searchStart = ToCharPos(spawner.CurSelection[1], v.Buf)
v.Cursor = c
Search(sel, v, true)
messenger.Message(v.Cursor.Loc)
for _, cur := range v.Buf.cursors {
if c.Loc == cur.Loc {
@@ -1873,7 +1872,6 @@ func (v *View) SkipMultiCursor(usePlugin bool) bool {
cursor := v.Buf.cursors[len(v.Buf.cursors)-1]
if v.Cursor == cursor {
messenger.Message("SKIP")
if usePlugin && !PreActionCall("SkipMultiCursor", v) {
return false
}