Skip to content

Commit

Permalink
Wezterm works now better with iterm2 animations again.
Browse files Browse the repository at this point in the history
Switch back the default from Kitty output to iterm2, which
is the default in that terminal.

Context: wez/wezterm#3882
  • Loading branch information
hzeller committed Jan 26, 2024
1 parent eeca210 commit 6ec2db8
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/term-query.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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")) {
Expand Down

0 comments on commit 6ec2db8

Please sign in to comment.