Update option setting strings for inline image display method

This commit is contained in:
Tatsuya Kinoshita
2021-02-06 13:09:29 +09:00
parent e66ca9fa4e
commit a9d8858809

6
rc.c
View File

@@ -367,9 +367,9 @@ static struct sel_c graphic_char_str[] = {
#ifdef USE_IMAGE #ifdef USE_IMAGE
static struct sel_c inlineimgstr[] = { static struct sel_c inlineimgstr[] = {
{N_S(INLINE_IMG_NONE), N_("external command")}, {N_S(INLINE_IMG_NONE), N_("external command")},
{N_S(INLINE_IMG_OSC5379), N_("mlterm")}, {N_S(INLINE_IMG_OSC5379), N_("OSC 5379 (mlterm)")},
{N_S(INLINE_IMG_SIXEL), N_("sixel")}, {N_S(INLINE_IMG_SIXEL), N_("sixel (img2sixel)")},
{N_S(INLINE_IMG_ITERM2), N_("iterm2")}, {N_S(INLINE_IMG_ITERM2), N_("OSC 1337 (iTerm2)")},
{0, NULL, NULL} {0, NULL, NULL}
}; };
#endif /* USE_IMAGE */ #endif /* USE_IMAGE */