25 lines
512 B
Go
25 lines
512 B
Go
// Generated automatically. DO NOT HAND-EDIT.
|
|
|
|
package terminfo
|
|
|
|
func init() {
|
|
// lsi adm3a
|
|
AddTerminfo(&Terminfo{
|
|
Name: "adm3a",
|
|
Columns: 80,
|
|
Lines: 24,
|
|
Bell: "\a",
|
|
Clear: "\x1a$<1/>",
|
|
Italic: "\x1b[3m",
|
|
Strikethrough: "\x1b[9m",
|
|
PadChar: "\x00",
|
|
SetCursor: "\x1b=%p1%' '%+%c%p2%' '%+%c",
|
|
CursorBack1: "\b",
|
|
CursorUp1: "\v",
|
|
KeyUp: "\v",
|
|
KeyDown: "\n",
|
|
KeyRight: "\f",
|
|
KeyLeft: "\b",
|
|
})
|
|
}
|