mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 16:37:27 +00:00
14 lines
156 B
Go
14 lines
156 B
Go
package vt
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
var _ = fmt.Print
|
|
|
|
type Cell struct {
|
|
Ch Ch
|
|
Fg, Bg, Dec CellColor
|
|
Mc MultiCell
|
|
Attrs CellAttrs
|
|
}
|