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 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 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.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
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: