term.go (2151B)
1 // Generated automatically. DO NOT HAND-EDIT. 2 3 package dtterm 4 5 import "github.com/gdamore/tcell/v2/terminfo" 6 7 func init() { 8 9 // CDE desktop terminal 10 terminfo.AddTerminfo(&terminfo.Terminfo{ 11 Name: "dtterm", 12 Columns: 80, 13 Lines: 24, 14 Colors: 8, 15 Bell: "\a", 16 Clear: "\x1b[H\x1b[J", 17 ShowCursor: "\x1b[?25h", 18 HideCursor: "\x1b[?25l", 19 AttrOff: "\x1b[m\x0f", 20 Underline: "\x1b[4m", 21 Bold: "\x1b[1m", 22 Dim: "\x1b[2m", 23 Blink: "\x1b[5m", 24 Reverse: "\x1b[7m", 25 SetFg: "\x1b[3%p1%dm", 26 SetBg: "\x1b[4%p1%dm", 27 SetFgBg: "\x1b[3%p1%d;4%p2%dm", 28 ResetFgBg: "\x1b[39;49m", 29 PadChar: "\x00", 30 AltChars: "``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~", 31 EnterAcs: "\x0e", 32 ExitAcs: "\x0f", 33 EnableAcs: "\x1b(B\x1b)0", 34 EnableAutoMargin: "\x1b[?7h", 35 DisableAutoMargin: "\x1b[?7l", 36 SetCursor: "\x1b[%i%p1%d;%p2%dH", 37 CursorBack1: "\b", 38 CursorUp1: "\x1b[A", 39 KeyUp: "\x1b[A", 40 KeyDown: "\x1b[B", 41 KeyRight: "\x1b[C", 42 KeyLeft: "\x1b[D", 43 KeyInsert: "\x1b[2~", 44 KeyDelete: "\x1b[3~", 45 KeyBackspace: "\b", 46 KeyPgUp: "\x1b[5~", 47 KeyPgDn: "\x1b[6~", 48 KeyF1: "\x1b[11~", 49 KeyF2: "\x1b[12~", 50 KeyF3: "\x1b[13~", 51 KeyF4: "\x1b[14~", 52 KeyF5: "\x1b[15~", 53 KeyF6: "\x1b[17~", 54 KeyF7: "\x1b[18~", 55 KeyF8: "\x1b[19~", 56 KeyF9: "\x1b[20~", 57 KeyF10: "\x1b[21~", 58 KeyF11: "\x1b[23~", 59 KeyF12: "\x1b[24~", 60 KeyF13: "\x1b[25~", 61 KeyF14: "\x1b[26~", 62 KeyF15: "\x1b[28~", 63 KeyF16: "\x1b[29~", 64 KeyF17: "\x1b[31~", 65 KeyF18: "\x1b[32~", 66 KeyF19: "\x1b[33~", 67 KeyF20: "\x1b[34~", 68 KeyHelp: "\x1b[28~", 69 AutoMargin: true, 70 }) 71 }