aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDr. Matthew Swabey <matthew@swabey.org>2023-09-29 11:57:02 -0400
committerGitHub <noreply@github.com>2023-09-29 10:57:02 -0500
commit54daf022ce989bb8ea34084f947ab85c045b690f (patch)
tree45a2c4ac65b80c16d4633885e10b1cefe78a4584
parentdd872cbb441a24cd32db56a5c285fe0f102d8ef6 (diff)
downloadrneovim-54daf022ce989bb8ea34084f947ab85c045b690f.tar.gz
rneovim-54daf022ce989bb8ea34084f947ab85c045b690f.tar.bz2
rneovim-54daf022ce989bb8ea34084f947ab85c045b690f.zip
docs(term): use tic -x for better compatibility with old ncurses (#25421)
Use `tic -x` instead of `tic` to include any unknown capabilities in a modern `terminfo.src` as user-defined ones, instead of dropping them. Modern ncurses behavior with `tic -x` will not change.
-rw-r--r--runtime/doc/term.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/term.txt b/runtime/doc/term.txt
index ee8a4d8732..8ef8675d13 100644
--- a/runtime/doc/term.txt
+++ b/runtime/doc/term.txt
@@ -31,7 +31,7 @@ a non-superuser:
>
curl -LO https://invisible-island.net/datafiles/current/terminfo.src.gz
gunzip terminfo.src.gz
- tic terminfo.src
+ tic -x terminfo.src
<
*$TERM*
The $TERM environment variable must match the terminal you are using!