summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/gdamore/tcell/v2/terminfo/a/aixterm/term.go
blob: 503c9199edcaec9494d9e778c21857f67637c03e (plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Generated automatically.  DO NOT HAND-EDIT.

package aixterm

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

func init() {

	// IBM Aixterm Terminal Emulator
	terminfo.AddTerminfo(&terminfo.Terminfo{
		Name:         "aixterm",
		Columns:      80,
		Lines:        25,
		Colors:       8,
		Bell:         "\a",
		Clear:        "\x1b[H\x1b[J",
		AttrOff:      "\x1b[0;10m\x1b(B",
		Underline:    "\x1b[4m",
		Bold:         "\x1b[1m",
		Reverse:      "\x1b[7m",
		SetFg:        "\x1b[3%p1%dm",
		SetBg:        "\x1b[4%p1%dm",
		SetFgBg:      "\x1b[3%p1%d;4%p2%dm",
		ResetFgBg:    "\x1b[32m\x1b[40m",
		PadChar:      "\x00",
		AltChars:     "jjkkllmmnnqqttuuvvwwxx",
		EnterAcs:     "\x1b(0",
		ExitAcs:      "\x1b(B",
		SetCursor:    "\x1b[%i%p1%d;%p2%dH",
		CursorBack1:  "\b",
		CursorUp1:    "\x1b[A",
		KeyUp:        "\x1b[A",
		KeyDown:      "\x1b[B",
		KeyRight:     "\x1b[C",
		KeyLeft:      "\x1b[D",
		KeyInsert:    "\x1b[139q",
		KeyDelete:    "\x1b[P",
		KeyBackspace: "\b",
		KeyHome:      "\x1b[H",
		KeyEnd:       "\x1b[146q",
		KeyPgUp:      "\x1b[150q",
		KeyPgDn:      "\x1b[154q",
		KeyF1:        "\x1b[001q",
		KeyF2:        "\x1b[002q",
		KeyF3:        "\x1b[003q",
		KeyF4:        "\x1b[004q",
		KeyF5:        "\x1b[005q",
		KeyF6:        "\x1b[006q",
		KeyF7:        "\x1b[007q",
		KeyF8:        "\x1b[008q",
		KeyF9:        "\x1b[009q",
		KeyF10:       "\x1b[010q",
		KeyF11:       "\x1b[011q",
		KeyF12:       "\x1b[012q",
		KeyF13:       "\x1b[013q",
		KeyF14:       "\x1b[014q",
		KeyF15:       "\x1b[015q",
		KeyF16:       "\x1b[016q",
		KeyF17:       "\x1b[017q",
		KeyF18:       "\x1b[018q",
		KeyF19:       "\x1b[019q",
		KeyF20:       "\x1b[020q",
		KeyF21:       "\x1b[021q",
		KeyF22:       "\x1b[022q",
		KeyF23:       "\x1b[023q",
		KeyF24:       "\x1b[024q",
		KeyF25:       "\x1b[025q",
		KeyF26:       "\x1b[026q",
		KeyF27:       "\x1b[027q",
		KeyF28:       "\x1b[028q",
		KeyF29:       "\x1b[029q",
		KeyF30:       "\x1b[030q",
		KeyF31:       "\x1b[031q",
		KeyF32:       "\x1b[032q",
		KeyF33:       "\x1b[033q",
		KeyF34:       "\x1b[034q",
		KeyF35:       "\x1b[035q",
		KeyF36:       "\x1b[036q",
		KeyClear:     "\x1b[144q",
		KeyBacktab:   "\x1b[Z",
		AutoMargin:   true,
	})
}