fix: preview sysfs empty files

Agent-Logs-Url: https://github.com/sxyazi/yazi/sessions/4b798394-4c65-49eb-925d-dab553c65276

Co-authored-by: sxyazi <17523360+sxyazi@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-03-31 13:59:10 +00:00 committed by GitHub
parent e3730efcfc
commit 42d4a64d0c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,7 +3,7 @@ local M = {}
function M.msg(job, s) ya.preview_widget(job, ui.Text(ui.Line(s):reverse()):area(job.area):wrap(ui.Wrap.YES)) end
function M:peek(job)
if not job.file.url:starts_with("/proc/") then
if not (job.file.url:starts_with("/proc/") or job.file.url:starts_with("/sys/")) then
return self.msg(job, "Empty file")
end