readline/complete_tag.go

8 lines
139 B
Go
Raw Normal View History

2016-09-02 15:10:31 +03:00
package readline
type TabCompleter struct{}
func (t *TabCompleter) Do([]rune, int) ([][]rune, int) {
return [][]rune{[]rune("\t")}, 0
}