1// Generated automatically.  DO NOT HAND-EDIT.
2
3package terminfo
4
5func init() {
6	// Sun Microsystems Workstation console with color support (IA systems)
7	AddTerminfo(&Terminfo{
8		Name:         "sun-color",
9		Columns:      80,
10		Lines:        34,
11		Colors:       8,
12		Bell:         "\a",
13		Clear:        "\f",
14		AttrOff:      "\x1b[m",
15		Bold:         "\x1b[1m",
16		Reverse:      "\x1b[7m",
17		SetFg:        "\x1b[3%p1%dm",
18		SetBg:        "\x1b[4%p1%dm",
19		SetFgBg:      "\x1b[3%p1%d;4%p2%dm",
20		PadChar:      "\x00",
21		SetCursor:    "\x1b[%i%p1%d;%p2%dH",
22		CursorBack1:  "\b",
23		CursorUp1:    "\x1b[A",
24		KeyUp:        "\x1b[A",
25		KeyDown:      "\x1b[B",
26		KeyRight:     "\x1b[C",
27		KeyLeft:      "\x1b[D",
28		KeyInsert:    "\x1b[247z",
29		KeyDelete:    "\u007f",
30		KeyBackspace: "\b",
31		KeyHome:      "\x1b[214z",
32		KeyEnd:       "\x1b[220z",
33		KeyPgUp:      "\x1b[216z",
34		KeyPgDn:      "\x1b[222z",
35		KeyF1:        "\x1b[224z",
36		KeyF2:        "\x1b[225z",
37		KeyF3:        "\x1b[226z",
38		KeyF4:        "\x1b[227z",
39		KeyF5:        "\x1b[228z",
40		KeyF6:        "\x1b[229z",
41		KeyF7:        "\x1b[230z",
42		KeyF8:        "\x1b[231z",
43		KeyF9:        "\x1b[232z",
44		KeyF10:       "\x1b[233z",
45		KeyF11:       "\x1b[234z",
46		KeyF12:       "\x1b[235z",
47	})
48}
49