elvish/pkg/eval/editor.go

8 lines
210 B
Go
Raw Normal View History

2016-09-12 01:17:59 +08:00
package eval
// Editor is the interface that the line editor has to satisfy. It is needed so
// that this package does not depend on the edit package.
type Editor interface {
2016-09-12 01:46:49 +08:00
Notify(string, ...interface{})
2016-09-12 01:17:59 +08:00
}