mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-02-01 11:34:59 +01: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
|
|
}
|