elvish/pkg/eval/editor.go
2019-12-23 20:00:59 +00:00

8 lines
210 B
Go

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 {
Notify(string, ...interface{})
}