Use sixel images for WezTerm

Enable the sixel feature when WezTerm is detected and clarify that the kitty terminal feature requires Unicode placeholder support rather than only the basic graphics protocol.
This commit is contained in:
Michael Grant
2026-08-03 10:39:11 +01:00
parent 791752ffff
commit da6812d15f
2 changed files with 6 additions and 1 deletions

4
tmux.1
View File

@@ -5063,6 +5063,10 @@ Ignore function keys from
and use the
.Nm
internal set only.
.It kitty
Supports Kitty graphics using Unicode placeholders.
The terminal must support the Kitty Unicode placeholder extension, not only
the basic Kitty graphics protocol.
.It margins
Supports DECSLRM margins.
.It mouse

View File

@@ -360,7 +360,7 @@ static const struct tty_feature tty_feature_sixel = {
TERM_SIXEL
};
/* Terminal has Kitty graphics protocol capability. */
/* Terminal has Kitty graphics protocol Unicode placeholder capability. */
static const char *const tty_feature_kitty_capabilities[] = {
"Kty",
TTY_FEATURE_SYNC,
@@ -597,6 +597,7 @@ tty_default_features(int *feat, const char *name, u_int version)
"extkeys,"
"focus,"
"hyperlinks,"
"sixel,"
"usstyle"
},
{ .name = "ghostty",