1// Generated automatically.  DO NOT HAND-EDIT.
2
3package terminfo
4
5func init() {
6	// dec vt320 7 bit terminal
7	AddTerminfo(&Terminfo{
8		Name:         "vt320",
9		Aliases:      []string{"vt300"},
10		Columns:      80,
11		Lines:        24,
12		Bell:         "\a",
13		Clear:        "\x1b[H\x1b[2J",
14		ShowCursor:   "\x1b[?25h",
15		HideCursor:   "\x1b[?25l",
16		AttrOff:      "\x1b[m\x1b(B",
17		Underline:    "\x1b[4m",
18		Bold:         "\x1b[1m",
19		Blink:        "\x1b[5m",
20		Reverse:      "\x1b[7m",
21		EnterKeypad:  "\x1b[?1h\x1b=",
22		ExitKeypad:   "\x1b[?1l\x1b>",
23		PadChar:      "\x00",
24		AltChars:     "``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~",
25		EnterAcs:     "\x1b(0",
26		ExitAcs:      "\x1b(B",
27		SetCursor:    "\x1b[%i%p1%d;%p2%dH",
28		CursorBack1:  "\b",
29		CursorUp1:    "\x1b[A",
30		KeyUp:        "\x1bOA",
31		KeyDown:      "\x1bOB",
32		KeyRight:     "\x1bOC",
33		KeyLeft:      "\x1bOD",
34		KeyInsert:    "\x1b[2~",
35		KeyDelete:    "\x1b[3~",
36		KeyBackspace: "\u007f",
37		KeyHome:      "\x1b[1~",
38		KeyPgUp:      "\x1b[5~",
39		KeyPgDn:      "\x1b[6~",
40		KeyF1:        "\x1bOP",
41		KeyF2:        "\x1bOQ",
42		KeyF3:        "\x1bOR",
43		KeyF4:        "\x1bOS",
44		KeyF6:        "\x1b[17~",
45		KeyF7:        "\x1b[18~",
46		KeyF8:        "\x1b[19~",
47		KeyF9:        "\x1b[20~",
48		KeyF10:       "\x1b[21~",
49		KeyF11:       "\x1b[23~",
50		KeyF12:       "\x1b[24~",
51		KeyF13:       "\x1b[25~",
52		KeyF14:       "\x1b[26~",
53		KeyF15:       "\x1b[28~",
54		KeyF16:       "\x1b[29~",
55		KeyF17:       "\x1b[31~",
56		KeyF18:       "\x1b[32~",
57		KeyF19:       "\x1b[33~",
58		KeyF20:       "\x1b[34~",
59	})
60}
61