github.com/oweisse/u-root@v0.0.0-20181109060735-d005ad25fef1/cmds/elvish/edit/eddefs/listing.go (about)

     1  package eddefs
     2  
     3  import (
     4  	"github.com/u-root/u-root/cmds/elvish/edit/ui"
     5  )
     6  
     7  type ListingProvider interface {
     8  	Len() int
     9  	Show(i int) (string, ui.Styled)
    10  	Filter(filter string) int
    11  	Accept(i int, ed Editor)
    12  	ModeTitle(int) string
    13  }