From 6ec2db81b894036e17b8e4bba8eb60e4bcae39f5 Mon Sep 17 00:00:00 2001 From: Henner Zeller Date: Fri, 26 Jan 2024 08:59:36 -0800 Subject: [PATCH] Wezterm works now better with iterm2 animations again. Switch back the default from Kitty output to iterm2, which is the default in that terminal. Context: https://github.com/wez/wezterm/issues/3882 --- src/term-query.cc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/term-query.cc b/src/term-query.cc index 6c6c935..0afec1a 100644 --- a/src/term-query.cc +++ b/src/term-query.cc @@ -232,10 +232,7 @@ TermGraphicsInfo QuerySupportedGraphicsProtocol() { result.preferred_graphics = GraphicsProtocol::kIterm2; } if (contains(data, len, "WezTerm")) { - // Kitty seems to work better with animations - // on wezterm currently - // https://github.com/wez/wezterm/issues/3882 - result.preferred_graphics = GraphicsProtocol::kKitty; + result.preferred_graphics = GraphicsProtocol::kIterm2; result.known_broken_sixel_cursor_placement = true; } if (contains(data, len, "kitty")) {