fix(lsp): ensure buffers are re-attached on rename (#16266)

If a LSP server sent a workspace edit containing a rename the buffers
file name changed without the server receiving a close notification for
the old buffer and without the client properly re-attaching on the new
file.

This affected `Move` code-actions in nvim-jdtls, but also
`vim.lsp.buf.rename` on a class level.
This commit is contained in:
Mathias Fußenegger
2021-11-14 12:55:16 +01:00
committed by GitHub
parent 2ef9d2a663
commit ee3a58d42e
3 changed files with 22 additions and 6 deletions

View File

@@ -1735,6 +1735,7 @@ describe('LSP', function()
-- after rename the target file must have the contents of the source file
local bufnr = vim.fn.bufadd(new)
vim.fn.bufload(new)
return vim.api.nvim_buf_get_lines(bufnr, 0, -1, true)
]], old, new)
eq({'Test content'}, lines)