mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-06 09:15:57 +02:00
15 lines
156 B
Go
15 lines
156 B
Go
package vt
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
var _ = fmt.Print
|
|
|
|
type Cell struct {
|
|
Ch Ch
|
|
Fg, Bg, Dec CellColor
|
|
Mc MultiCell
|
|
Attrs CellAttrs
|
|
}
|