We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
System (please complete the following information):
macOS
14.3.1
1.5.4
ENV info on the terminal (by command env | grep -i TERM)
env | grep -i TERM
TERM=xterm-256color TERMINAL_EMULATOR=JetBrains-JediTerm TERM_SESSION_ID=xxx
Describe the bug
When using this library for printing messages, the program runs noticeably slower than when using just fmt.Print.
fmt.Print
To Reproduce
entries := map[string]string{ "test": "fest", "rest": "best", } i := 1 yellow := color.FgGreen.Render for k := range entries { _, err := fmt.Println(yellow(strconv.Itoa(i)+". ", k)) if err != nil { color.Errorln(err) } i++ }
Expected behavior
To run at similar speed compared to using the fmt package.
fmt
The text was updated successfully, but these errors were encountered:
inhere
No branches or pull requests
System (please complete the following information):
macOS
14.3.1
1.5.4
ENV info on the terminal (by command
env | grep -i TERM
)Describe the bug
When using this library for printing messages, the program runs noticeably slower than when using just
fmt.Print
.To Reproduce
Expected behavior
To run at similar speed compared to using the
fmt
package.The text was updated successfully, but these errors were encountered: