mirror of
https://github.com/cheat/cheat.git
synced 2025-04-14 13:36:06 +02:00
28 lines
623 B
Go
28 lines
623 B
Go
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"text/tabwriter"
|
|
|
|
"github.com/cheat/cheat/internal/config"
|
|
"github.com/cheat/cheat/internal/display"
|
|
)
|
|
|
|
// cmdDirectories lists the configured cheatpaths.
|
|
func cmdDirectories(_ map[string]interface{}, conf config.Config) {
|
|
|
|
// initialize a tabwriter to produce cleanly columnized output
|
|
var out bytes.Buffer
|
|
w := tabwriter.NewWriter(&out, 0, 0, 1, ' ', 0)
|
|
|
|
// generate sorted, columnized output
|
|
for _, path := range conf.Cheatpaths {
|
|
fmt.Fprintf(w, "%s:\t%s\n", path.Name, path.Path)
|
|
}
|
|
|
|
// write columnized output to stdout
|
|
w.Flush()
|
|
display.Write(out.String(), conf)
|
|
}
|