diff --git a/io/key/key.go b/io/key/key.go index 18d27bc8..5ba60b7b 100644 --- a/io/key/key.go +++ b/io/key/key.go @@ -11,7 +11,6 @@ package key import ( "encoding/binary" - "fmt" "math" "strings" @@ -367,10 +366,6 @@ func (FocusEvent) ImplementsEvent() {} func (SnippetEvent) ImplementsEvent() {} func (SelectionEvent) ImplementsEvent() {} -func (e Event) String() string { - return fmt.Sprintf("%v %v %v}", e.Name, e.Modifiers, e.State) -} - func (m Modifiers) String() string { var strs []string if m.Contain(ModCtrl) {