SVI dc6aa9adf0 d01 Проба bubbletea il y a 2 ans
..
compressor dc6aa9adf0 d01 Проба bubbletea il y a 2 ans
.gitignore dc6aa9adf0 d01 Проба bubbletea il y a 2 ans
.golangci.yml dc6aa9adf0 d01 Проба bubbletea il y a 2 ans
LICENSE dc6aa9adf0 d01 Проба bubbletea il y a 2 ans
README.md dc6aa9adf0 d01 Проба bubbletea il y a 2 ans
ansi.go dc6aa9adf0 d01 Проба bubbletea il y a 2 ans
buffer.go dc6aa9adf0 d01 Проба bubbletea il y a 2 ans
writer.go dc6aa9adf0 d01 Проба bubbletea il y a 2 ans

README.md

ansi

Latest Release Build Status Coverage Status Go ReportCard GoDoc

Raw ANSI sequence helpers

ANSI Writer

import "github.com/muesli/ansi"

w := ansi.Writer{Forward: os.Stdout}
w.Write([]byte("\x1b[31mHello, world!\x1b[0m"))
w.Close()

Compressor

The ANSI compressor eliminates unnecessary/redundant ANSI sequences.

import "github.com/muesli/ansi/compressor"

w := compressor.Writer{Forward: os.Stdout}
w.Write([]byte("\x1b[31mHello, world!\x1b[0m"))
w.Close()