tcell/terminfo
Hubert Hirtz 0fb69aed47 Add support for the foot terminal
https://codeberg.org/dnkl/foot
2021-06-05 05:29:41 -07:00
..
a Fix for writing in last column of last line for automargin terminals. 2021-05-18 23:17:00 -07:00
b/beterm Fix for writing in last column of last line for automargin terminals. 2021-05-18 23:17:00 -07:00
base
c/cygwin Fix for writing in last column of last line for automargin terminals. 2021-05-18 23:17:00 -07:00
d/dtterm Fix for writing in last column of last line for automargin terminals. 2021-05-18 23:17:00 -07:00
dynamic
e/emacs Fix for writing in last column of last line for automargin terminals. 2021-05-18 23:17:00 -07:00
extended Add support for the foot terminal 2021-06-05 05:29:41 -07:00
f/foot Add support for the foot terminal 2021-06-05 05:29:41 -07:00
g/gnome Fix for writing in last column of last line for automargin terminals. 2021-05-18 23:17:00 -07:00
h/hpterm Fix for writing in last column of last line for automargin terminals. 2021-05-18 23:17:00 -07:00
k Fix for writing in last column of last line for automargin terminals. 2021-05-18 23:17:00 -07:00
l/linux Fix for writing in last column of last line for automargin terminals. 2021-05-18 23:17:00 -07:00
p/pcansi Fix for writing in last column of last line for automargin terminals. 2021-05-18 23:17:00 -07:00
r/rxvt Fix for writing in last column of last line for automargin terminals. 2021-05-18 23:17:00 -07:00
s Make sun-color 256 color by default, and just drop the sun-256color. 2021-06-01 20:43:32 -07:00
t Fix for writing in last column of last line for automargin terminals. 2021-05-18 23:17:00 -07:00
v Fix for writing in last column of last line for automargin terminals. 2021-05-18 23:17:00 -07:00
w Fix for writing in last column of last line for automargin terminals. 2021-05-18 23:17:00 -07:00
x Add xterm-direct, which gives 24-bit color. 2021-06-01 14:36:48 -07:00
.gitignore
README.md
TERMINALS.md
gen.sh
mkinfo.go Fix for writing in last column of last line for automargin terminals. 2021-05-18 23:17:00 -07:00
models.txt Sun terminal color fixes. 2021-05-31 17:59:55 -07:00
terminfo.go Sun terminal color fixes. 2021-05-31 17:59:55 -07:00
terminfo_test.go

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.