1// Generated automatically.  DO NOT HAND-EDIT.
2
3package terminfo
4
5func init() {
6	// rxvt-unicode terminal (X Window System)
7	AddTerminfo(&Terminfo{
8		Name:         "rxvt-unicode",
9		Columns:      80,
10		Lines:        24,
11		Colors:       88,
12		Bell:         "\a",
13		Clear:        "\x1b[H\x1b[2J",
14		EnterCA:      "\x1b[?1049h",
15		ExitCA:       "\x1b[r\x1b[?1049l",
16		ShowCursor:   "\x1b[?12l\x1b[?25h",
17		HideCursor:   "\x1b[?25l",
18		AttrOff:      "\x1b[m\x1b(B",
19		Underline:    "\x1b[4m",
20		Bold:         "\x1b[1m",
21		Blink:        "\x1b[5m",
22		Reverse:      "\x1b[7m",
23		EnterKeypad:  "\x1b=",
24		ExitKeypad:   "\x1b>",
25		SetFg:        "\x1b[38;5;%p1%dm",
26		SetBg:        "\x1b[48;5;%p1%dm",
27		SetFgBg:      "\x1b[38;5;%p1%d;48;5;%p2%dm",
28		AltChars:     "+C,D-A.B0E``aaffgghFiGjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~",
29		EnterAcs:     "\x1b(0",
30		ExitAcs:      "\x1b(B",
31		Mouse:        "\x1b[M",
32		MouseMode:    "%?%p1%{1}%=%t%'h'%Pa%e%'l'%Pa%;\x1b[?1000%ga%c\x1b[?1002%ga%c\x1b[?1003%ga%c\x1b[?1006%ga%c",
33		SetCursor:    "\x1b[%i%p1%d;%p2%dH",
34		CursorBack1:  "\b",
35		CursorUp1:    "\x1b[A",
36		KeyUp:        "\x1b[A",
37		KeyDown:      "\x1b[B",
38		KeyRight:     "\x1b[C",
39		KeyLeft:      "\x1b[D",
40		KeyInsert:    "\x1b[2~",
41		KeyDelete:    "\x1b[3~",
42		KeyBackspace: "\u007f",
43		KeyHome:      "\x1b[7~",
44		KeyEnd:       "\x1b[8~",
45		KeyPgUp:      "\x1b[5~",
46		KeyPgDn:      "\x1b[6~",
47		KeyF1:        "\x1b[11~",
48		KeyF2:        "\x1b[12~",
49		KeyF3:        "\x1b[13~",
50		KeyF4:        "\x1b[14~",
51		KeyF5:        "\x1b[15~",
52		KeyF6:        "\x1b[17~",
53		KeyF7:        "\x1b[18~",
54		KeyF8:        "\x1b[19~",
55		KeyF9:        "\x1b[20~",
56		KeyF10:       "\x1b[21~",
57		KeyF11:       "\x1b[23~",
58		KeyF12:       "\x1b[24~",
59		KeyF13:       "\x1b[25~",
60		KeyF14:       "\x1b[26~",
61		KeyF15:       "\x1b[28~",
62		KeyF16:       "\x1b[29~",
63		KeyF17:       "\x1b[31~",
64		KeyF18:       "\x1b[32~",
65		KeyF19:       "\x1b[33~",
66		KeyF20:       "\x1b[34~",
67		KeyBacktab:   "\x1b[Z",
68		KeyShfLeft:   "\x1b[d",
69		KeyShfRight:  "\x1b[c",
70		KeyShfUp:     "\x1b[a",
71		KeyShfDown:   "\x1b[b",
72		KeyCtrlLeft:  "\x1b[Od",
73		KeyCtrlRight: "\x1b[Oc",
74		KeyCtrlUp:    "\x1b[Oa",
75		KeyCtrlDown:  "\x1b[Ob",
76		KeyShfHome:   "\x1b[7$",
77		KeyShfEnd:    "\x1b[8$",
78		KeyCtrlHome:  "\x1b[7^",
79		KeyCtrlEnd:   "\x1b[8^",
80	})
81}
82