term.go (2507B)
1 // Generated automatically. DO NOT HAND-EDIT. 2 3 package xterm_kitty 4 5 import "github.com/gdamore/tcell/v2/terminfo" 6 7 func init() { 8 9 // KovIdTTY 10 terminfo.AddTerminfo(&terminfo.Terminfo{ 11 Name: "xterm-kitty", 12 Columns: 80, 13 Lines: 24, 14 Colors: 256, 15 Bell: "\a", 16 Clear: "\x1b[H\x1b[2J", 17 EnterCA: "\x1b[?1049h", 18 ExitCA: "\x1b[?1049l", 19 ShowCursor: "\x1b[?12h\x1b[?25h", 20 HideCursor: "\x1b[?25l", 21 AttrOff: "\x1b(B\x1b[m", 22 Underline: "\x1b[4m", 23 Bold: "\x1b[1m", 24 Dim: "\x1b[2m", 25 Italic: "\x1b[3m", 26 Reverse: "\x1b[7m", 27 EnterKeypad: "\x1b[?1h", 28 ExitKeypad: "\x1b[?1l", 29 SetFg: "\x1b[%?%p1%{8}%<%t3%p1%d%e%p1%{16}%<%t9%p1%{8}%-%d%e38;5;%p1%d%;m", 30 SetBg: "\x1b[%?%p1%{8}%<%t4%p1%d%e%p1%{16}%<%t10%p1%{8}%-%d%e48;5;%p1%d%;m", 31 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", 32 ResetFgBg: "\x1b[39;49m", 33 AltChars: "++,,--..00``aaffgghhiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~", 34 EnterAcs: "\x1b(0", 35 ExitAcs: "\x1b(B", 36 EnableAutoMargin: "\x1b[?7h", 37 DisableAutoMargin: "\x1b[?7l", 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: "\x7f", 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 TrueColor: true, 69 AutoMargin: true, 70 DoubleUnderline: "\x1b[4:2m", 71 CurlyUnderline: "\x1b[4:3m", 72 DottedUnderline: "\x1b[4:4m", 73 DashedUnderline: "\x1b[4:5m", 74 }) 75 }