Documentation
¶
Index ¶
- Variables
- func Compress(zipFilename string, filename string) error
- func CompressDir(w *zip.Writer, dirName string) error
- func CompressFile(w *zip.Writer, filename string) error
- func DisplayURL(urlStr string) string
- func ExpandUser(pathname string) string
- func FileExists(filename string) bool
- func FuzzyAgo(ago time.Duration) string
- func GreenCheck() string
- func Humanize(s string) string
- func IsCygwinTerminal(w interface{}) bool
- func IsURL(s string) bool
- func NewColorable(w io.Writer) io.Writer
- func OpenInBrowser(url string) error
- func Pluralize(num int, thing string) string
- func RandStringRunes(n int) string
- func RenderMarkdown(text string) (string, error)
- func Spinner(w io.Writer) *spinner.Spinner
- type TablePrinter
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // Outputs ANSI color if stdout is a tty Magenta = makeColorFunc("magenta") Cyan = makeColorFunc("cyan") Red = makeColorFunc("red") Yellow = makeColorFunc("yellow") Blue = makeColorFunc("blue") Green = makeColorFunc("green") Gray = makeColorFunc("black+h") Bold = makeColorFunc("default+b") )
View Source
var IsTerminal = func(w interface{}) bool { if f, isFile := w.(*os.File); isFile { return isatty.IsTerminal(f.Fd()) || IsCygwinTerminal(f) } return false }
View Source
var StartSpinner = func(s *spinner.Spinner) {
s.Start()
}
We do this so we can stub out the spinner in tests -- it made things really flakey. this is not an elegant solution.
View Source
var StopSpinner = func(s *spinner.Spinner) {
s.Stop()
}
Functions ¶
func DisplayURL ¶
func ExpandUser ¶
func FileExists ¶
FileExists checks if a file exists and is not a directory before we try using it to prevent further errors.
func GreenCheck ¶
func GreenCheck() string
func IsCygwinTerminal ¶
func IsCygwinTerminal(w interface{}) bool
func NewColorable ¶
NewColorable returns an output stream that handles ANSI color sequences on Windows
func OpenInBrowser ¶
OpenInBrowser opens the url in a web browser based on OS and $BROWSER environment variable
func RandStringRunes ¶
func RenderMarkdown ¶
Types ¶
type TablePrinter ¶
type TablePrinter interface { IsTTY() bool AddField(string, func(int, string) string, func(string) string) EndRow() Render() error }
func NewTablePrinter ¶
func NewTablePrinter(io *iostreams.IOStreams) TablePrinter
Click to show internal directories.
Click to hide internal directories.