File: term.go

package info (click to toggle)
golang-github-gdamore-tcell 1.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 892 kB
  • sloc: sh: 16; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 791 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Generated automatically.  DO NOT HAND-EDIT.

package tvi921

import "github.com/gdamore/tcell/terminfo"

func init() {

	// televideo model 921 with sysline same as page & real vi function
	terminfo.AddTerminfo(&terminfo.Terminfo{
		Name:         "tvi921",
		Columns:      80,
		Lines:        24,
		Clear:        "\x1a",
		ShowCursor:   "\x1b.3",
		AttrOff:      "\x1bG0",
		Underline:    "\x1bG8",
		Reverse:      "\x1bG4",
		PadChar:      "\x00",
		EnterAcs:     "\x1b$",
		ExitAcs:      "\x1b%%",
		SetCursor:    "\x1b=%p1%' '%+%c%p2%' '%+%c$<3/>",
		CursorBack1:  "\b",
		CursorUp1:    "\v",
		KeyUp:        "\v",
		KeyDown:      "\x16",
		KeyRight:     "\f",
		KeyLeft:      "\b",
		KeyInsert:    "\x1bQ",
		KeyDelete:    "\x1bW",
		KeyBackspace: "\b",
		KeyClear:     "\x1a",
	})
}