elvish/eval/editor.go

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{})
}