aboutsummaryrefslogtreecommitdiffstats
path: root/lsp
diff options
context:
space:
mode:
authorSebastian Lyng Johansen <sebastian@lyngjohansen.com>2025-09-06 20:48:47 +0200
committerGitHub <noreply@github.com>2025-09-06 11:48:47 -0700
commit80a816315e653e1e6641b8961ef84c110a359ab4 (patch)
tree2aac41f31779cc84ea721a05bb238082f977e1d2 /lsp
parentdocs: update configs.md (diff)
downloadnvim-lspconfig-80a816315e653e1e6641b8961ef84c110a359ab4.tar
nvim-lspconfig-80a816315e653e1e6641b8961ef84c110a359ab4.tar.gz
nvim-lspconfig-80a816315e653e1e6641b8961ef84c110a359ab4.tar.bz2
nvim-lspconfig-80a816315e653e1e6641b8961ef84c110a359ab4.tar.lz
nvim-lspconfig-80a816315e653e1e6641b8961ef84c110a359ab4.tar.xz
nvim-lspconfig-80a816315e653e1e6641b8961ef84c110a359ab4.tar.zst
nvim-lspconfig-80a816315e653e1e6641b8961ef84c110a359ab4.zip
fix(roslyn_ls): remove unused handler #4061
This handler was removed a long time ago and was replaced with another handler that is already implemented here: https://github.com/dotnet/vscode-csharp/commit/9cc41f6d2535a5cb5533dc5ae8f3a10ade16e7b5
Diffstat (limited to 'lsp')
-rw-r--r--lsp/roslyn_ls.lua7
1 files changed, 0 insertions, 7 deletions
diff --git a/lsp/roslyn_ls.lua b/lsp/roslyn_ls.lua
index 0469e1ad..e332443f 100644
--- a/lsp/roslyn_ls.lua
+++ b/lsp/roslyn_ls.lua
@@ -69,13 +69,6 @@ local function roslyn_handlers()
refresh_diagnostics(client)
return vim.NIL
end,
-
- ['workspace/_roslyn_projectHasUnresolvedDependencies'] = function()
- vim.notify('Detected missing dependencies. Run `dotnet restore` command.', vim.log.levels.ERROR, {
- title = 'roslyn_ls',
- })
- return vim.NIL
- end,
['workspace/_roslyn_projectNeedsRestore'] = function(_, result, ctx)
local client = assert(vim.lsp.get_client_by_id(ctx.client_id))