term.go (2188B)
1 // Generated automatically. DO NOT HAND-EDIT. 2 3 package kterm 4 5 import "github.com/gdamore/tcell/v2/terminfo" 6 7 func init() { 8 9 // kterm kanji terminal emulator (X window system) 10 terminfo.AddTerminfo(&terminfo.Terminfo{ 11 Name: "kterm", 12 Columns: 80, 13 Lines: 24, 14 Colors: 8, 15 Bell: "\a", 16 Clear: "\x1b[H\x1b[2J", 17 EnterCA: "\x1b7\x1b[?47h", 18 ExitCA: "\x1b[2J\x1b[?47l\x1b8", 19 AttrOff: "\x1b[m\x1b(B", 20 Underline: "\x1b[4m", 21 Bold: "\x1b[1m", 22 Reverse: "\x1b[7m", 23 EnterKeypad: "\x1b[?1h\x1b=", 24 ExitKeypad: "\x1b[?1l\x1b>", 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: "``aajjkkllmmnnooppqqrrssttuuvvwwxx~~", 31 EnterAcs: "\x1b(0", 32 ExitAcs: "\x1b(B", 33 EnableAutoMargin: "\x1b[?7h", 34 DisableAutoMargin: "\x1b[?7l", 35 Mouse: "\x1b[M", 36 SetCursor: "\x1b[%i%p1%d;%p2%dH", 37 CursorBack1: "\b", 38 CursorUp1: "\x1b[A", 39 KeyUp: "\x1bOA", 40 KeyDown: "\x1bOB", 41 KeyRight: "\x1bOC", 42 KeyLeft: "\x1bOD", 43 KeyInsert: "\x1b[2~", 44 KeyDelete: "\x1b[3~", 45 KeyBackspace: "\x7f", 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 AutoMargin: true, 69 XTermLike: true, 70 }) 71 }