kitty/tools/vt/cell.go
Kovid Goyal 92e2b93e95
Start work on VT implementation in Go
Will be used by pager kitten
2025-02-06 12:31:32 +05:30

14 lines
156 B
Go

package vt
import (
"fmt"
)
var _ = fmt.Print
type Cell struct {
Ch Ch
Fg, Bg, Dec CellColor
Attrs CellAttrs
Mc MultiCell
}