blob: 556f6107ab77bc1ac79b0aacfb4bcaffdfb195f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
local function setup()
ps.sub("cd", function()
local cwd = cx.active.current.cwd
if cwd:ends_with("Downloads") then
ya.emit("sort", { "mtime", reverse = true, dir_first = false })
else
ya.emit("sort", { "alphabetical", reverse = false, dir_first = true })
end
end)
end
return { setup = setup }
|