mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-22 15:21:04 +00:00
12 lines
264 B
Lua
12 lines
264 B
Lua
local M = {}
|
|
|
|
function M:peek(job)
|
|
local line = ui.Line("Remote file, download to preview"):reverse()
|
|
ya.preview_widget(job, ui.Text(line):area(job.area):wrap(ui.Wrap.YES))
|
|
end
|
|
|
|
function M:seek() end
|
|
|
|
function M:spot(job) require("file"):spot(job) end
|
|
|
|
return M
|