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