File: term.go

package info (click to toggle)
golang-github-gdamore-tcell 1.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 892 kB
  • sloc: sh: 16; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 490 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Generated automatically.  DO NOT HAND-EDIT.

package adm3a

import "github.com/gdamore/tcell/terminfo"

func init() {

	// lsi adm3a
	terminfo.AddTerminfo(&terminfo.Terminfo{
		Name:        "adm3a",
		Columns:     80,
		Lines:       24,
		Bell:        "\a",
		Clear:       "\x1a$<1/>",
		PadChar:     "\x00",
		SetCursor:   "\x1b=%p1%' '%+%c%p2%' '%+%c",
		CursorBack1: "\b",
		CursorUp1:   "\v",
		KeyUp:       "\v",
		KeyDown:     "\n",
		KeyRight:    "\f",
		KeyLeft:     "\b",
	})
}