blob: 872420039bd87db83239ce78f3728499661b1999 (
plain)
1
2
3
4
5
6
7
8
9
|
-- from: https://yazi-rs.github.io/docs/tips#smart-enter
--- @sync entry
return {
entry = function()
local h = cx.active.current.hovered
ya.manager_emit(h and h.cha.is_dir and "enter" or "open", { hovered = true })
end,
}
|