2017-11-23 12:31:44 -08:00
|
|
|
// Generated automatically. DO NOT HAND-EDIT.
|
|
|
|
|
2019-07-23 18:54:20 -07:00
|
|
|
package xnuppc
|
|
|
|
|
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
|
|
|
// Darwin PowerPC Console (color)
|
2019-07-23 18:54:20 -07:00
|
|
|
terminfo.AddTerminfo(&terminfo.Terminfo{
|
2017-11-23 12:31:44 -08:00
|
|
|
Name: "xnuppc",
|
|
|
|
Aliases: []string{"darwin"},
|
|
|
|
Colors: 8,
|
|
|
|
Clear: "\x1b[H\x1b[J",
|
2017-12-20 22:07:14 -08:00
|
|
|
AttrOff: "\x1b[m",
|
2017-11-23 12:31:44 -08:00
|
|
|
Underline: "\x1b[4m",
|
|
|
|
Bold: "\x1b[1m",
|
|
|
|
Reverse: "\x1b[7m",
|
|
|
|
EnterKeypad: "\x1b[?1h\x1b=",
|
|
|
|
ExitKeypad: "\x1b[?1l\x1b>",
|
|
|
|
SetFg: "\x1b[3%p1%dm",
|
|
|
|
SetBg: "\x1b[4%p1%dm",
|
|
|
|
SetFgBg: "\x1b[3%p1%d;4%p2%dm",
|
|
|
|
PadChar: "\x00",
|
|
|
|
SetCursor: "\x1b[%i%p1%d;%p2%dH",
|
|
|
|
CursorBack1: "\x1b[D",
|
|
|
|
CursorUp1: "\x1b[A",
|
|
|
|
KeyUp: "\x1bOA",
|
|
|
|
KeyDown: "\x1bOB",
|
|
|
|
KeyRight: "\x1bOC",
|
|
|
|
KeyLeft: "\x1bOD",
|
2020-01-14 17:44:18 -05:00
|
|
|
KeyBackspace: "\u007f",
|
2017-11-23 12:31:44 -08:00
|
|
|
})
|
|
|
|
}
|