1
2
3 package foot
4
5 import "github.com/gdamore/tcell/v2/terminfo"
6
7 func init() {
8
9
10 terminfo.AddTerminfo(&terminfo.Terminfo{
11 Name: "foot",
12 Aliases: []string{"foot-extra"},
13 Columns: 80,
14 Lines: 24,
15 Colors: 256,
16 Bell: "\a",
17 Clear: "\x1b[H\x1b[2J",
18 EnterCA: "\x1b[?1049h\x1b[22;0;0t",
19 ExitCA: "\x1b[?1049l\x1b[23;0;0t",
20 ShowCursor: "\x1b[?12l\x1b[?25h",
21 HideCursor: "\x1b[?25l",
22 AttrOff: "\x1b(B\x1b[m",
23 Underline: "\x1b[4m",
24 Bold: "\x1b[1m",
25 Dim: "\x1b[2m",
26 Italic: "\x1b[3m",
27 Blink: "\x1b[5m",
28 Reverse: "\x1b[7m",
29 EnterKeypad: "\x1b[?1h\x1b=",
30 ExitKeypad: "\x1b[?1l\x1b>",
31 SetFg: "\x1b[%?%p1%{8}%<%t3%p1%d%e%p1%{16}%<%t9%p1%{8}%-%d%e38:5:%p1%d%;m",
32 SetBg: "\x1b[%?%p1%{8}%<%t4%p1%d%e%p1%{16}%<%t10%p1%{8}%-%d%e48:5:%p1%d%;m",
33 SetFgBg: "\x1b[%?%p1%{8}%<%t3%p1%d%e%p1%{16}%<%t9%p1%{8}%-%d%e38:5:%p1%d%;;%?%p2%{8}%<%t4%p2%d%e%p2%{16}%<%t10%p2%{8}%-%d%e48:5:%p2%d%;m",
34 ResetFgBg: "\x1b[39;49m",
35 AltChars: "``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~",
36 EnterAcs: "\x1b(0",
37 ExitAcs: "\x1b(B",
38 StrikeThrough: "\x1b[9m",
39 Mouse: "\x1b[M",
40 SetCursor: "\x1b[%i%p1%d;%p2%dH",
41 CursorBack1: "\b",
42 CursorUp1: "\x1b[A",
43 KeyUp: "\x1bOA",
44 KeyDown: "\x1bOB",
45 KeyRight: "\x1bOC",
46 KeyLeft: "\x1bOD",
47 KeyInsert: "\x1b[2~",
48 KeyDelete: "\x1b[3~",
49 KeyBackspace: "\u007f",
50 KeyHome: "\x1bOH",
51 KeyEnd: "\x1bOF",
52 KeyPgUp: "\x1b[5~",
53 KeyPgDn: "\x1b[6~",
54 KeyF1: "\x1bOP",
55 KeyF2: "\x1bOQ",
56 KeyF3: "\x1bOR",
57 KeyF4: "\x1bOS",
58 KeyF5: "\x1b[15~",
59 KeyF6: "\x1b[17~",
60 KeyF7: "\x1b[18~",
61 KeyF8: "\x1b[19~",
62 KeyF9: "\x1b[20~",
63 KeyF10: "\x1b[21~",
64 KeyF11: "\x1b[23~",
65 KeyF12: "\x1b[24~",
66 KeyBacktab: "\x1b[Z",
67 Modifiers: 1,
68 AutoMargin: true,
69 })
70 }
71
View as plain text