28 lines
716 B
Lua
28 lines
716 B
Lua
local save = ya.sync(function(st, cwd, output)
|
|
if cx.active.current.cwd == Url(cwd) then
|
|
st.output = output
|
|
ya.render()
|
|
end
|
|
end)
|
|
|
|
return {
|
|
setup = function(st)
|
|
Header:children_remove(1, Header.LEFT)
|
|
Header:children_add(function() return ui.Line.parse(st.output or "") end, 1000, Header.LEFT)
|
|
|
|
ps.sub("cd", function()
|
|
local cwd = cx.active.current.cwd
|
|
if st.cwd ~= cwd then
|
|
st.cwd = cwd
|
|
ya.manager_emit("plugin", { st._id, args = ya.quote(tostring(cwd), true) })
|
|
end
|
|
end)
|
|
end,
|
|
|
|
entry = function(_, args)
|
|
local output = Command("starship"):arg("prompt"):cwd(args[1]):env("STARSHIP_SHELL", ""):output()
|
|
if output then
|
|
save(args[1], output.stdout:gsub("^%s+", ""))
|
|
end
|
|
end,
|
|
}
|