Skip to content

ahmetb/go-cursor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages