Start work on VT implementation in Go

Will be used by pager kitten
This commit is contained in:
Kovid Goyal
2025-02-06 12:31:32 +05:30
parent 4b38818dca
commit 92e2b93e95
4 changed files with 95 additions and 0 deletions

14
tools/vt/cell.go Normal file
View File

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