Neovim version (nvim -v)
v0.12.0-dev+1855-c08139d79
Operating system/version
Fedora 43
Describe the bug
In an Elixir project, the mix template never returns any tasks, while also causing overseer to significantly slow down to the point where every single OverseerRun can take >10 seconds
What is the severity of this bug?
breaking (some functionality is broken)
Steps To Reproduce
- mix new test && cd test
- Create some other task file (ie. a justfile) for testing purposes
- nvim -u repro.lua
:OverseerRun takes multiple seconds to run every single time and doesn't show mix tasks
Expected Behavior
- Mix tasks should be shown in the list
- It should cache the tasks, so that subsequent launches don't take this long
Minimal example file
No response
Minimal init.lua
-- 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
-- Install overseer
vim.o.packpath = vim.o.packpath .. ',~/.local/share/nvim/site'
vim.pack.add({ "https://github.com/stevearc/overseer.nvim" })
Additional context
No response
Neovim version (nvim -v)
v0.12.0-dev+1855-c08139d79
Operating system/version
Fedora 43
Describe the bug
In an Elixir project, the
mixtemplate never returns any tasks, while also causing overseer to significantly slow down to the point where every singleOverseerRuncan take >10 secondsWhat is the severity of this bug?
breaking (some functionality is broken)
Steps To Reproduce
:OverseerRuntakes multiple seconds to run every single time and doesn't showmixtasksExpected Behavior
Minimal example file
No response
Minimal init.lua
Additional context
No response