kitty/tools/vt/line.go
2025-02-07 20:09:00 +05:30

21 lines
221 B
Go

package vt
import (
"fmt"
)
var _ = fmt.Print
type PromptKind uint8
const (
UNKNOWN_PROMPT_KIND PromptKind = iota
PROMPT_START
SECONDARY_PROMPT
OUTPUT_START
)
type Line struct {
Cells []Cell
Attrs LineAttrs
}