rename ENABLE_KITTY to ENABLE_KITTY_IMAGES

This commit is contained in:
Thomas Adam
2026-03-02 17:07:07 +00:00
parent 1634db8589
commit 5a233e26ec
9 changed files with 25 additions and 26 deletions

View File

@@ -2564,7 +2564,7 @@ format_cb_version(__unused struct format_tree *ft)
static void *
format_cb_image_support(__unused struct format_tree *ft)
{
#if defined(ENABLE_SIXEL) && defined(ENABLE_KITTY)
#if defined(ENABLE_SIXEL) && defined(ENABLE_KITTY_IMAGES)
return (xstrdup("kitty,sixel"));
#endif
@@ -2572,11 +2572,10 @@ format_cb_image_support(__unused struct format_tree *ft)
return (xstrdup("sixel"));
#endif
#ifdef ENABLE_KITTY
#ifdef ENABLE_KITTY_IMAGES
return (xstrdup("kitty"));
#endif
return (NULL);
}
/* Callback for active_window_index. */