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
Cursor should check if the writer is a terminal or not, before writing the control characters.
func main() { cursor.Hide() fmt.Print("Hello World!") cursor.Show() }
$ go run main.go > hello.txt
If you open hello.txt you'll see
\x1B[?25lHello World!\x1B[?25h
If the writer is not a terminal, the ANSI escape sequences shouldn't be written.
This is also the cause for pterm/pterm#518
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Cursor should check if the writer is a terminal or not, before writing the control characters.
To Reproduce
$ go run main.go > hello.txt
If you open hello.txt you'll see
If the writer is not a terminal, the ANSI escape sequences shouldn't be written.
This is also the cause for pterm/pterm#518
The text was updated successfully, but these errors were encountered: