Aram Drevekenin

Results 533 comments of Aram Drevekenin
trafficstars

A few things: 1. Try to use a terminal that supports synchronized renders (CSI 2026) - without this most remedies we can make are cosmetic and won't do much for...

Hi friends, Thanks to everyone for pointing out their reproductions and experiences here, but at this point I don't think this adds anything to the discussion. This issue is 99%...

Hey, for the record: I looked at the dump and the CSI 2026 appears at the beginning and end properly (this is a dump of the whole terminal state, not...

Not reproducing I'm afraid... https://github.com/zellij-org/zellij/assets/795598/02c6c0e6-7b3e-4400-bee0-27f8e3ae3984 Are you on the latest version of Alacritty? They only implemented support for synchronized renders in 0.13.0 iirc.

Alright, I got it! This was indeed an issue in the Zellij rendering engine, as nvim here was correctly sending us a single frame in this case and we were...

For the removal of doubt: I'm not reproducing this (otherwise I wouldn't have issued the fix). Only thing I can think of is to make sure you built correctly following...

> Hi, bumping this because, although the minimal reproduction is indeed fixed on master, the noice plugin's floating cmdline still causes cursor flickering, both with and without termsync. Will try...

This works pretty well: ```javascript const util = require('util') const looksSame = util.promisify(require('looks-same')) const res = await looksSame('foo.png', 'bar.png') ```

Hey, I have a hacked together function that receives a ratatui `Buffer` and returns stringified ANSI (with styles and all). I unfortunately do not have the capacity to do a...

There you go (no need to credit me, most of this is copied from various places in the ratatui codebase, the rest is just some ANSI serialization). Note that this...