neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit f5d558c8ea2e0637f105521806edc8a27d549847
parent 888f12858add8b16ce7d83129cbf20670df38f37
Author: Mathias Fußenegger <mfussenegger@users.noreply.github.com>
Date:   Wed, 27 Jul 2022 18:56:27 +0200

feat(lsp): provide feedback if server can't compute rename result (#19546)

Without some form of feedback a user cannot easily tell if the server is
still computing the result (which can take a while in large projects),
or whether the server couldn't compute the rename result.
Diffstat:
Mruntime/lua/vim/lsp/handlers.lua | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/runtime/lua/vim/lsp/handlers.lua b/runtime/lua/vim/lsp/handlers.lua @@ -257,6 +257,7 @@ end) --see: https://microsoft.github.io/language-server-protocol/specifications/specification-current/#textDocument_rename M['textDocument/rename'] = function(_, result, ctx, _) if not result then + vim.notify("Language server couldn't provide rename result", vim.log.levels.INFO) return end local client = vim.lsp.get_client_by_id(ctx.client_id)