yazi/yazi-plugin/preset/components/current.lua

30 lines
576 B
Lua
Raw Normal View History

Current = {
area = ui.Rect.default,
}
function Current:render(area)
self.area = area
local files = Folder:by_kind(Folder.CURRENT).window
if #files == 0 then
return {}
end
local items, markers = {}, {}
for i, f in ipairs(files) do
items[#items + 1] = ui.ListItem(ui.Line(File:full(f))):style(File:style(f))
2024-02-15 15:24:20 +03:00
-- Yanked/marked/selected files
2024-02-24 04:11:53 +03:00
local marker = File:marker(f)
2024-02-15 15:24:20 +03:00
if marker ~= 0 then
markers[#markers + 1] = { i, marker }
end
end
return ya.flat {
ui.List(area, items),
Folder:linemode(area, files),
Folder:markers(area, markers),
}
end