Handle terminal paste and raw events in info bar

This commit is contained in:
Zachary Yedidia 2020-02-13 16:10:35 -05:00
parent 9d1c489574
commit faa207907c

View File

@ -68,7 +68,7 @@ func (h *InfoPane) HandleEvent(event tcell.Event) {
h.EventCallback(resp) h.EventCallback(resp)
} }
} }
case *tcell.EventMouse: default:
h.BufPane.HandleEvent(event) h.BufPane.HandleEvent(event)
} }
} }