mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-19 15:04:50 +02:00
Start work on VT implementation in Go
Will be used by pager kitten
This commit is contained in:
14
tools/vt/cell.go
Normal file
14
tools/vt/cell.go
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user