oil.nvim icon indicating copy to clipboard operation
oil.nvim copied to clipboard

bug: oil-ssh from command line causes "Oil split could not find parent window" error

Open Makaze opened this issue 2 years ago • 6 comments

Did you check the docs and existing issues?

  • [X] I have read the docs
  • [X] I have searched the existing issues

Neovim version (nvim -v)

v0.10.0-dev-1405e5c

Operating system/version

22.04.1-Ubuntu

Describe the bug

nvim oil-ssh://domain.com/

Immediate error: "Oil split could not find parent window. Please try to replicate whatever you just did and report a bug on github"

After skipping, the buffer opens normally with no popup.

It opens without error when running :Oil oil-ssh://domain.com/ or e: oil-ssh://domain.com/.

What is the severity of this bug?

tolerable (can work around it)

Steps To Reproduce

  1. nvim -u repro-lua oil-ssh://domain.com/

Expected Behavior

No error.

Directory structure

oil-ssh://domain.com/

Repro

-- save as repro.lua
-- run with nvim -u repro.lua
-- DO NOT change the paths
local root = vim.fn.fnamemodify("./.repro", ":p")

-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "runtime", "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/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?

  • [X] I have confirmed that the bug reproduces with nvim -u repro.lua using the repro.lua file above.

Makaze avatar Mar 06 '24 17:03 Makaze

Same

ryoppippi avatar Mar 14 '24 08:03 ryoppippi