de4e5c4494
@klamonte opened this issue against gowid, a package that relies on tcell for all its terminal handling: https://github.com/gcla/gowid/issues/24. It describes how a shell inside a terminal widget that the TUI launches freezes when the user hits backspace. The TUI loads a tcell TermInfo struct for the screen-256color terminal and that struct codes KeyBackspace as the single byte 0xff - and so the byte 0xff was sent to the tty. On my Ubuntu 19.04 machine, `infocmp screen-256color` shows `kbs` is `^?` According to https://en.wikipedia.org/wiki/Caret_notation, `^?` should map to 0x7f (127) - "The digraph stands for the control character whose ASCII code is the same as the character's ASCII code with the uppermost bit, in a 7-bit encoding, reversed". This affects both mkinfo.go, the generator of the JSON terminfo database files, and the dynamic terminfo generator. |
||
---|---|---|
.. | ||
a | ||
b | ||
base | ||
c/cygwin | ||
d | ||
dynamic | ||
e | ||
extended | ||
g/gnome | ||
h | ||
k | ||
l/linux | ||
p/pcansi | ||
r/rxvt | ||
s | ||
t | ||
v | ||
w | ||
x | ||
.gitignore | ||
README.md | ||
TERMINALS.md | ||
gen.sh | ||
mkinfo.go | ||
models.txt | ||
terminfo.go | ||
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:
-
Compiled Go code
-
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.