Closed yoichi closed 4 years ago
There is a limit to the image size that kitty can handle. The maximum size is 10000: https://github.com/kovidgoyal/kitty/blob/c7eb63d4ff9fda4e294eea3933bd7a424c70f723/kitty/graphics.c#L327
So, longcat -n N with N >= 191 fails to display the image. This patch resize larger image as we do in iterm/iterm.go, and make the image be displayed.
longcat -n N
Regards,
Looks good. Thank you.
There is a limit to the image size that kitty can handle. The maximum size is 10000: https://github.com/kovidgoyal/kitty/blob/c7eb63d4ff9fda4e294eea3933bd7a424c70f723/kitty/graphics.c#L327
So,
longcat -n N
with N >= 191 fails to display the image. This patch resize larger image as we do in iterm/iterm.go, and make the image be displayed.Regards,