From 32a3994024b0a8f38c4e01fac2334945408e4e98 Mon Sep 17 00:00:00 2001 From: Jonah Caplan Date: Thu, 9 Nov 2023 14:05:58 -0500 Subject: [PATCH] use wildcard in suggested true color fix for tmux --- manual/src/tips-and-tricks/using-delta-with-tmux.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/src/tips-and-tricks/using-delta-with-tmux.md b/manual/src/tips-and-tricks/using-delta-with-tmux.md index 4c02a97d4..781faf2bd 100644 --- a/manual/src/tips-and-tricks/using-delta-with-tmux.md +++ b/manual/src/tips-and-tricks/using-delta-with-tmux.md @@ -3,7 +3,7 @@ If you're using tmux, it's worth checking that 24 bit color is working correctly. For example, run a color test script like [this one](https://gist.githubusercontent.com/lifepillar/09a44b8cf0f9397465614e622979107f/raw/24-bit-color.sh), or one of the others listed [here](https://gist.github.com/XVilka/8346728). If you do not see smooth color gradients, see the discussion at [tmux#696](https://github.com/tmux/tmux/issues/696). The short version is you need something like this in your `~/.tmux.conf`: ```Shell -set -ga terminal-overrides ",xterm-256color:Tc" +set -ga terminal-overrides ",*-256color:Tc" ``` and you may then need to quit tmux completely for it to take effect.