/go-cursor

ANSI escape code helpers for Go

Primary LanguageGoApache License 2.0Apache-2.0

go-cursor

Provides ANSI escape sequences (strings) for manipulating cursor on terminals.

Usage

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))
}