mirror of
https://github.com/neovim/neovim.git
synced 2026-04-20 14:25:32 +00:00
fix(lsp): get_namespace signature (#38449)
Problem: Since the change to `pull_id` in #37938 we used the deprecated signature internally Solution: Don't
This commit is contained in:
@@ -1364,7 +1364,7 @@ function M.code_action(opts)
|
||||
if context.diagnostics then
|
||||
params.context = context
|
||||
else
|
||||
local ns_push = lsp.diagnostic.get_namespace(client.id, false)
|
||||
local ns_push = lsp.diagnostic.get_namespace(client.id)
|
||||
local diagnostics = {}
|
||||
local lnum = api.nvim_win_get_cursor(0)[1] - 1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user