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
Opening an already opened file from another instance throws
Error executing vim.schedule lua callback: /tmp/repro/.repro/plugins/oil.nvim/lua/oil/init.lua:599: Vim:E325: ATTENTION
stack traceback:
[C]: in function 'cmd'
/tmp/repro/.repro/plugins/oil.nvim/lua/oil/init.lua:599: in function 'callback'
...repro/.repro/plugins/oil.nvim/lua/oil/adapters/files.lua:228: in function ''
vim/_editor.lua: in function <vim/_editor.lua:0>
Is this something we should handle/hide?
Steps To Reproduce
touch file
nvim -u repro.lua file
(In another instance) nvim -u repro.lua, open oil and open file from within oil
Expected Behavior
We could hide the stack trace.
Directory structure
/tmp/repro/repro.lua
/tmp/repro/file
Repro
-- 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)
0.9.2
Operating system/version
Arch
Describe the bug
Opening an already opened file from another instance throws
Is this something we should handle/hide?
Steps To Reproduce
touch file
nvim -u repro.lua file
nvim -u repro.lua
, open oil and openfile
from within oilExpected Behavior
We could hide the stack trace.
Directory structure
/tmp/repro/repro.lua
/tmp/repro/file
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: