Codebase list golang-github-manifoldco-promptui / 70ccd47
Remove ansiterm to avoid LGPL dependency Nicko Guyer 3 years ago
2 changed file(s) with 3 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
55 github.com/chzyer/logex v1.1.10 // indirect
66 github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e
77 github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1 // indirect
8 github.com/juju/ansiterm v0.0.0-20180109212912-720a0952cc2a
98 github.com/kr/pretty v0.1.0 // indirect
109 github.com/lunixbochs/vtclean v0.0.0-20180621232353-2d01aacdc34a // indirect
1110 github.com/mattn/go-colorable v0.0.9 // indirect
44 "fmt"
55 "io"
66 "os"
7 "text/tabwriter"
78 "text/template"
89
910 "github.com/chzyer/readline"
10 "github.com/juju/ansiterm"
1111 "github.com/manifoldco/promptui/list"
1212 "github.com/manifoldco/promptui/screenbuf"
1313 )
586586 }
587587
588588 var buf bytes.Buffer
589 w := ansiterm.NewTabWriter(&buf, 0, 0, 8, ' ', 0)
589
590 w := tabwriter.NewWriter(&buf, 0, 0, 8, ' ', 0)
590591
591592 err := s.Templates.details.Execute(w, item)
592593 if err != nil {