2017-11-23 12:31:44 -08:00
|
|
|
// Generated automatically. DO NOT HAND-EDIT.
|
|
|
|
|
2019-07-23 18:54:20 -07:00
|
|
|
package tvi950
|
|
|
|
|
2020-08-25 16:20:58 -07:00
|
|
|
import "github.com/gdamore/tcell/v2/terminfo"
|
2017-11-23 12:31:44 -08:00
|
|
|
|
|
|
|
func init() {
|
2019-07-23 18:54:20 -07:00
|
|
|
|
2017-11-23 12:31:44 -08:00
|
|
|
// televideo 950
|
2019-07-23 18:54:20 -07:00
|
|
|
terminfo.AddTerminfo(&terminfo.Terminfo{
|
2017-11-23 12:31:44 -08:00
|
|
|
Name: "tvi950",
|
|
|
|
Columns: 80,
|
|
|
|
Lines: 24,
|
|
|
|
Bell: "\a",
|
|
|
|
Clear: "\x1b*",
|
|
|
|
AttrOff: "\x1bG0",
|
|
|
|
Underline: "\x1bG8",
|
|
|
|
Reverse: "\x1bG4",
|
|
|
|
PadChar: "\x00",
|
2017-12-20 22:07:14 -08:00
|
|
|
AltChars: "b\tc\fd\re\ni\v",
|
2017-11-23 12:31:44 -08:00
|
|
|
EnterAcs: "\x15",
|
|
|
|
ExitAcs: "\x18",
|
|
|
|
SetCursor: "\x1b=%p1%' '%+%c%p2%' '%+%c",
|
|
|
|
CursorBack1: "\b",
|
|
|
|
CursorUp1: "\v",
|
|
|
|
KeyUp: "\v",
|
|
|
|
KeyDown: "\x16",
|
|
|
|
KeyRight: "\f",
|
|
|
|
KeyLeft: "\b",
|
|
|
|
KeyInsert: "\x1bQ",
|
|
|
|
KeyDelete: "\x1bW",
|
|
|
|
KeyBackspace: "\b",
|
|
|
|
KeyHome: "\x1e",
|
|
|
|
KeyF1: "\x01@\r",
|
|
|
|
KeyF2: "\x01A\r",
|
|
|
|
KeyF3: "\x01B\r",
|
|
|
|
KeyF4: "\x01C\r",
|
|
|
|
KeyF5: "\x01D\r",
|
|
|
|
KeyF6: "\x01E\r",
|
|
|
|
KeyF7: "\x01F\r",
|
|
|
|
KeyF8: "\x01G\r",
|
|
|
|
KeyF9: "\x01H\r",
|
|
|
|
KeyClear: "\x1b*",
|
|
|
|
KeyBacktab: "\x1bI",
|
|
|
|
})
|
|
|
|
}
|