From f64d6bb89909bf3c7062ec09ace369c89f24c28e Mon Sep 17 00:00:00 2001 From: Araki Ken Date: Sat, 11 Oct 2014 15:46:47 +0900 Subject: If SCREEN_VARIANT=sixel on GNU screen, exec img2sixel without -P option. --- terms.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'terms.c') diff --git a/terms.c b/terms.c index 1c90b58..1545157 100644 --- a/terms.c +++ b/terms.c @@ -625,7 +625,8 @@ put_image_sixel(char *url, int x, int y, int w, int h, int sx, int sy, int sw, i sx*pixel_per_char_i, sy*pixel_per_line_i); argv[8] = clip; argv[9] = url; - if (getenv("TERM") && strcmp(getenv("TERM"), "screen") == 0) { + if (getenv("TERM") && strcmp(getenv("TERM"), "screen") == 0 && + (!getenv("SCREEN_VARIANT") || strcmp(getenv("SCREEN_VARIANT"), "sixel") != 0)) { argv[10] = "-P"; argv[11] = NULL; } -- cgit v1.2.3