Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug: Renaming files on typescript stopped working #449

Open
3 tasks done
simonlearnscoding opened this issue Jul 17, 2024 · 0 comments
Open
3 tasks done

bug: Renaming files on typescript stopped working #449

simonlearnscoding opened this issue Jul 17, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@simonlearnscoding
Copy link

Did you check the docs and existing issues?

  • I have read the docs
  • I have searched the existing issues

Neovim version (nvim -v)

0.10.0-dev

Operating system/version

linux

Describe the bug

I am on typescript using typescript-language-server, renaming files with oil worked fine until about three days ago until it stopped working, I tried using different ts lsp's but to no success so far

What is the severity of this bug?

breaking (some functionality is broken)

Steps To Reproduce

nvim 0.10.0 with typescript-language-server on linux ubuntu

Expected Behavior

When I rename a file it should adapt the imports

Directory structure

No response

Repro

-- Sorry I tried to do this repro thing but I couldn't make it work due to lazy.nvim (?)
-- 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?

  • I have confirmed that the bug reproduces with nvim -u repro.lua using the repro.lua file above.
@simonlearnscoding simonlearnscoding added the bug Something isn't working label Jul 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant