aboutsummaryrefslogtreecommitdiff
path: root/ui/ui.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/ui.go')
-rw-r--r--ui/ui.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/ui/ui.go b/ui/ui.go
index 6dc843a..9f742bf 100644
--- a/ui/ui.go
+++ b/ui/ui.go
@@ -9,14 +9,7 @@ const (
SignalQuit int = iota
)
-type Messager interface {
- // Message prints output from the editor, using the Printf signature.
- Message(format string, a ...interface{})
-}
-
type Interface interface {
- //Messager
-
// Init initializes the user interface.
Init(ed editor.Editor) error