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
When I run OverseerQuickAction it correctly finds the tasks on my backend/justfile but when I try to run it, it says justfile not found, this makes sense, as the command is run from cwd, and it does not look inside backend.
What is the severity of this bug?
minor (annoyance)
Steps To Reproduce
Create justfile in sub directory
Use OverseerQuickAction to select an action from the justfile
Observe error
Expected Behavior
It runs just in the directory of the justfile it found the task in.
Minimal example file
No response
Minimal init.lua
-- DO NOT change the paths and don't remove the colorschemelocalroot=vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .reprofor_, nameinipairs({ "config", "data", "state", "cache" }) dovim.env[("XDG_%s_HOME"):format(name:upper())] =root.."/" ..nameend-- bootstrap lazylocallazypath=root.."/plugins/lazy.nvim"ifnotvim.loop.fs_stat(lazypath) thenvim.fn.system({
"git",
"clone",
"--filter=blob:none",
"--single-branch",
"https://github.com/folke/lazy.nvim.git",
lazypath,
})
endvim.opt.runtimepath:prepend(lazypath)
-- install pluginslocalplugins= {
"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
Additional context
No response
The text was updated successfully, but these errors were encountered:
Neovim version (nvim -v)
v0.10.1
Operating system/version
MacOS 14.5
Describe the bug
When I run
OverseerQuickAction
it correctly finds the tasks on mybackend/justfile
but when I try to run it, it saysjustfile not found
, this makes sense, as the command is run from cwd, and it does not look insidebackend
.What is the severity of this bug?
minor (annoyance)
Steps To Reproduce
OverseerQuickAction
to select an action from the justfileExpected Behavior
It runs
just
in the directory of thejustfile
it found the task in.Minimal example file
No response
Minimal init.lua
Additional context
No response
The text was updated successfully, but these errors were encountered: