You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have this in my .nvim.lua file and want open task list at the right when task started.
require("overseer").register_template({
name="My project task",
params= {},
condition= {
-- This makes the template only available in the current directory-- In case you :cd out laterdir=vim.fn.getcwd(),
},
builder=function()
return {
cmd= { "echo" },
args= { "Hello", "world" },
components= {
{ "open_output", on_start="always", direction="float" },
"default"
}
}
end,
})
Neovim version (nvim -v)
v0.9.5
Operating system/version
Archlinux
Describe the bug
I have this in my .nvim.lua file and want open task list at the right when task started.
And this in setup()
But when Task start nothing is open. OverseerOpen float command works fine.
What is the severity of this bug?
minor (annoyance)
Steps To Reproduce
add .nvim.lua file and run task described above
Expected Behavior
open task list at the right (or other places defined in direction/setup) when task started
Minimal example file
No response
Minimal init.lua
Additional context
No response
The text was updated successfully, but these errors were encountered: