piframe-go/vendor/github.com/gdamore/tcell/terminfo
KemoNine a616ac6c56 Update vendoring for new ui 2020-08-28 15:19:36 -04:00
..
a Update vendoring for new ui 2020-08-28 15:19:36 -04:00
b Update vendoring for new ui 2020-08-28 15:19:36 -04:00
base Update vendoring for new ui 2020-08-28 15:19:36 -04:00
c/cygwin Update vendoring for new ui 2020-08-28 15:19:36 -04:00
d Update vendoring for new ui 2020-08-28 15:19:36 -04:00
dynamic Update vendoring for new ui 2020-08-28 15:19:36 -04:00
e Update vendoring for new ui 2020-08-28 15:19:36 -04:00
extended Update vendoring for new ui 2020-08-28 15:19:36 -04:00
g/gnome Update vendoring for new ui 2020-08-28 15:19:36 -04:00
h Update vendoring for new ui 2020-08-28 15:19:36 -04:00
k Update vendoring for new ui 2020-08-28 15:19:36 -04:00
l/linux Update vendoring for new ui 2020-08-28 15:19:36 -04:00
p/pcansi Update vendoring for new ui 2020-08-28 15:19:36 -04:00
r/rxvt Update vendoring for new ui 2020-08-28 15:19:36 -04:00
s Update vendoring for new ui 2020-08-28 15:19:36 -04:00
t Update vendoring for new ui 2020-08-28 15:19:36 -04:00
v Update vendoring for new ui 2020-08-28 15:19:36 -04:00
w Update vendoring for new ui 2020-08-28 15:19:36 -04:00
x Update vendoring for new ui 2020-08-28 15:19:36 -04:00
.gitignore Update vendoring for new ui 2020-08-28 15:19:36 -04:00
README.md Update vendoring for new ui 2020-08-28 15:19:36 -04:00
TERMINALS.md Update vendoring for new ui 2020-08-28 15:19:36 -04:00
gen.sh Update vendoring for new ui 2020-08-28 15:19:36 -04:00
models.txt Update vendoring for new ui 2020-08-28 15:19:36 -04:00
terminfo.go Update vendoring for new ui 2020-08-28 15:19:36 -04:00

README.md

This package represents the parent for all terminals.

In older versions of tcell we had (a couple of) different external file formats for the terminal database. Those are now removed. All terminal definitions are supplied by one of two methods:

  1. Compiled Go code

  2. For systems with terminfo and infocmp, dynamically generated at runtime.

The Go code can be generated using the mkinfo utility in this directory. The database entry should be generated into a package in a directory named as the first character of the package name. (This permits us to group them all without having a huge directory of little packages.)

It may be desirable to add new packages to the extended package, or -- rarely -- the base package.

Applications which want to have the large set of terminal descriptions built into the binary can simply import the extended package. Otherwise a smaller reasonable default set (the base package) will be included instead.