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 get an invalid in commandline window message when opening the cmdwindow for an oil float.
Error executing vim.schedule lua callback: ...local/share/nvim/lazy/oil.nvim/lua/oil/init.lua:302: E11: Invalid in command-line window; executes, CTRL-C quits
stack traceback:
[C]: in function 'nvim_win_close'
...smilhey/.local/share/nvim/lazy/oil.nvim/lua/oil/init.lua:302: in function ''
vim/_editor.lua: in function <vim/_editor.lua:0>
Adding a step to check for win type in the float creation seems to do the trick :
-- save as repro.lua-- run with nvim -u repro.lua-- DO NOT change the pathslocalroot=vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .reprofor_, nameinipairs({ "config", "data", "state", "runtime", "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/oil.nvim",
config=function()
require("oil").setup({
-- add any needed settings here
})
end,
},
-- add any other plugins here
}
require("lazy").setup(plugins, {
root=root.."/plugins",
})
vim.cmd.colorscheme("tokyonight")
-- add anything else here
Did you check the bug with a clean config?
I have confirmed that the bug reproduces with nvim -u repro.lua using the repro.lua file above.
The text was updated successfully, but these errors were encountered:
Did you check the docs and existing issues?
Neovim version (nvim -v)
v0.11.0-dev-5+g50749f8df
Operating system/version
Fedora Linux 40
Describe the bug
I get an invalid in commandline window message when opening the cmdwindow for an oil float.
Error executing vim.schedule lua callback: ...local/share/nvim/lazy/oil.nvim/lua/oil/init.lua:302: E11: Invalid in command-line window; executes, CTRL-C quits
stack traceback:
[C]: in function 'nvim_win_close'
...smilhey/.local/share/nvim/lazy/oil.nvim/lua/oil/init.lua:302: in function ''
vim/_editor.lua: in function <vim/_editor.lua:0>
Adding a step to check for win type in the float creation seems to do the trick :
What is the severity of this bug?
tolerable (can work around it)
Steps To Reproduce
Open an oil float and hit q: or : then Ctrl-f
Expected Behavior
No error message
Directory structure
No response
Repro
Did you check the bug with a clean config?
nvim -u repro.lua
using the repro.lua file above.The text was updated successfully, but these errors were encountered: