line.go 221 B

12345678910111213141516171819202122
  1. package vt
  2. import (
  3. "fmt"
  4. )
  5. var _ = fmt.Print
  6. type PromptKind uint8
  7. const (
  8. UNKNOWN_PROMPT_KIND PromptKind = iota
  9. PROMPT_START
  10. SECONDARY_PROMPT
  11. OUTPUT_START
  12. )
  13. type Line struct {
  14. Cells []Cell
  15. Attrs LineAttrs
  16. }