File: editor.go

package info (click to toggle)
elvish 0.12%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,532 kB
  • sloc: python: 108; makefile: 94; sh: 72; xml: 9
file content (7 lines) | stat: -rw-r--r-- 210 bytes parent folder | download
1
2
3
4
5
6
7
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{})
}