github.com/mem/u-root@v2.0.1-0.20181004165302-9b18b4636a33+incompatible/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  }