lazygit/vendor/github.com/gdamore/tcell/v2/terminfo
Stefan Haller 212ec7e8e5 Bump gocui
This resolves the regression from the last gocui bump that strikethrough no
longer worked.
2024-03-03 18:41:03 +01:00
..
a Bump gocui 2024-03-03 18:41:03 +01:00
b/beterm Bump gocui 2024-01-10 09:39:25 +01:00
base Bump gocui 2024-01-10 09:39:25 +01:00
c/cygwin Bump gocui 2024-03-03 18:41:03 +01:00
d/dtterm Bump gocui 2024-03-01 14:07:19 +01:00
dynamic Bump gocui 2024-01-10 09:39:25 +01:00
e/emacs Bump gocui 2024-03-03 18:41:03 +01:00
extended Bump gocui 2024-03-01 14:07:19 +01:00
f/foot Bump gocui 2024-01-10 09:39:25 +01:00
g/gnome Bump gocui 2024-03-01 14:07:19 +01:00
h/hpterm Bump gocui 2024-03-03 18:41:03 +01:00
k Bump gocui 2024-03-03 18:41:03 +01:00
l/linux Bump gocui 2024-03-03 18:41:03 +01:00
p/pcansi Bump gocui 2024-03-03 18:41:03 +01:00
r/rxvt Bump gocui 2024-03-03 18:41:03 +01:00
s Bump gocui 2024-03-03 18:41:03 +01:00
t/tmux Bump gocui 2024-03-03 18:41:03 +01:00
v Bump gocui 2024-03-03 18:41:03 +01:00
w Bump gocui 2024-03-03 18:41:03 +01:00
x Bump gocui 2024-03-03 18:41:03 +01:00
.gitignore Bump gocui 2024-01-10 09:39:25 +01:00
gen.sh Bump gocui 2024-01-10 09:39:25 +01:00
models.txt Bump gocui 2024-03-01 14:07:19 +01:00
README.md Bump gocui 2024-01-10 09:39:25 +01:00
TERMINALS.md Bump gocui 2024-01-10 09:39:25 +01:00
terminfo.go Bump gocui 2024-03-01 14:07:19 +01:00

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.