You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
preview window must be big enough so that image wont get downscaled.
hover over text file then hover over graphical file. sometimes its racy, but on certain files it always reproduces.
The text was updated successfully, but these errors were encountered:
I guess it's fsfree that's outputting content to stderr, and since io.popen only supports stdout, fsfree's stderr gets directly output to the Yazi UI, which messes up the screen.
Because of this, io.popen is unsafe for Yazi. You should always avoid using it and use Command instead unless you really know what you're doing.
Also, never call external commands in the UI rendering function/process. Instead, you should schedule them asynchronously as a fetcher and merge the results into the UI. Look at how the git and mactag plugin does it.
I'm going to lock this issue because it has been closed for 30 days. ⏳
This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please file a new issue and complete the issue template so we can capture all the details necessary to investigate further.
What system are you running Yazi on?
Linux X11
What terminal are you running Yazi in?
kitty master
yazi --debug
outputDid you try the latest nightly build to see if the problem got fixed?
Yes, and I updated the debug information above (
yazi --debug
) to the nightly that I triedDescribe the bug
Moving from text preview to graphical (image/video), leaves holes in the image where the text was in the previous preview, with custom

init.lua
Expected Behavior
no artifacting.
To Reproduce
This section is required in
init.lua
for artifacting to appear.preview window must be big enough so that image wont get downscaled.
hover over text file then hover over graphical file. sometimes its racy, but on certain files it always reproduces.
The text was updated successfully, but these errors were encountered: