github.com/hugelgupf/u-root@v0.0.0-20191023214958-4807c632154c/cmds/core/elvish/edit/eddefs/listing.go (about)

     1  package eddefs
     2  
     3  import (
     4  	"github.com/u-root/u-root/cmds/core/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  }