From 135a793d1c31d52176e17e34ef57f7fd11bd1338 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Wed, 15 Aug 2018 13:07:42 +0100 Subject: [PATCH] Add strikethrough support in VTE terminals --- tmux.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tmux.conf b/tmux.conf index 353e13e..9571ea7 100644 --- a/tmux.conf +++ b/tmux.conf @@ -40,6 +40,9 @@ if -b '[ -n $ITERM_PROFILE ]' \ "set -ga terminal-overrides '*:Ss=\E]1337;CursorShape=%p1%d\7'" \ "set -ga terminal-overrides '*:Ss=\E[%p1%d q:Se=\E[2 q'" +# Enable strikethrough on VTE compatible terminals. +set -ga terminal-overrides 'xterm*:smxx=\E[9m' + # Set only on OS X where it's required if -b '[ "`uname`" = "Darwin" ]' \ "set -g default-command 'reattach-to-user-namespace -l $SHELL'"