mohammed90 / go-cursor

ANSI escape code helpers for Go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

ANSI escape code helpers for Go

License:Apache License 2.0


Languages

Language:Go 100.0%