summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authorChristian Duerr <chrisduerr@users.noreply.github.com>2019-03-03 20:25:29 +0000
committerGitHub <noreply@github.com>2019-03-03 20:25:29 +0000
commit1ca729487e56e4f50d83790af4ef60e4f40b398f (patch)
treeeb32f1e360ef8f065f3415a27b0f7ac1cd2103a6 /INSTALL.md
parentde52ddb6c25a6d58cdfaa095ad6ec9abffa6564a (diff)
downloadalacritty-1ca729487e56e4f50d83790af4ef60e4f40b398f.tar.gz
alacritty-1ca729487e56e4f50d83790af4ef60e4f40b398f.zip
Fix terminfo support for extended capabilities
To make sure all extended capabilities can be queried correctly, it is necessary to compile the terminfo file using the `-x` flag. Since Alacritty specified support for the XTerm mouse mode (XM/xm), using the `-x` flag was not possible until now without breaking programs like `htop`. By removing this flag, these issues should be resolved. This fixes https://github.com/jwilm/alacritty/issues/2131.
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 72aa711c..28cb35ed 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -307,5 +307,5 @@ instead.
To install alacritty's terminfo entry globally:
```sh
-sudo tic -e alacritty,alacritty-direct alacritty.info
+sudo tic -xe alacritty,alacritty-direct alacritty.info
```