Provides ANSI escape sequences (strings) for manipulating cursor on terminals.
Here is equivalent of clear
program (cls
command on Windows) written in Go
using go-cursor
:
package main
import (
"fmt"
"github.com/ahmetalpbalkan/go-cursor"
)
func main() {
fmt.Print(cursor.ClearEntireScreen())
fmt.Print(cursor.MoveTo(0, 0))
}