We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
{}
0.10.0
Arch Linux
breaking (some functionality is broken)
Run the next snippet
local overseer = require("overseer") local tasks = {} task = overseer.new_task({ name = "testing regression", strategy = { "orchestrator", tasks = { tasks, }}}) task:start()
You will get the next error
No response
-- DO NOT change the paths and don't remove the colorscheme local root = vim.fn.fnamemodify("./.repro", ":p") -- set stdpaths to use .repro for _, name in ipairs({ "config", "data", "state", "cache" }) do vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name end -- bootstrap lazy local lazypath = root .. "/plugins/lazy.nvim" if not vim.loop.fs_stat(lazypath) then vim.fn.system({ "git", "clone", "--filter=blob:none", "--single-branch", "https://github.com/folke/lazy.nvim.git", lazypath, }) end vim.opt.runtimepath:prepend(lazypath) -- install plugins local plugins = { "folke/tokyonight.nvim", { "stevearc/dressing.nvim", config = true }, { "stevearc/overseer.nvim", config = function() require("overseer").setup({ -- add your overseer config here }) end, }, -- add any other plugins here } require("lazy").setup(plugins, { root = root .. "/plugins", }) vim.cmd.colorscheme("tokyonight") -- add anything else here local overseer = require("overseer") local tasks = {} task = overseer.new_task({ name = "testing regression", strategy = { "orchestrator", tasks = { tasks, }}}) task:start()
The text was updated successfully, but these errors were encountered:
fix: orchestrator strategy allows empty task lists (#309)
29dd31d
Should be fixed now
Sorry, something went wrong.
Tested and fixed indeed!
No branches or pull requests
Neovim version (nvim -v)
0.10.0
Operating system/version
Arch Linux
Describe the bug
What is the severity of this bug?
breaking (some functionality is broken)
Steps To Reproduce
Run the next snippet
You will get the next error
Expected Behavior
Minimal example file
No response
Minimal init.lua
Additional context
The text was updated successfully, but these errors were encountered: