aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorIron-E <36409591+Iron-E@users.noreply.github.com>2020-11-15 19:33:20 -0500
committerGitHub <noreply@github.com>2020-11-15 19:33:20 -0500
commitc070b9d5966645f6aa0df630f6847b5ed46a15be (patch)
tree52e7ccd84fd8a43946571ce8b62569c86a96b92c /lua
parentRemove redundant assertion (diff)
downloadnvim-lspconfig-c070b9d5966645f6aa0df630f6847b5ed46a15be.tar
nvim-lspconfig-c070b9d5966645f6aa0df630f6847b5ed46a15be.tar.gz
nvim-lspconfig-c070b9d5966645f6aa0df630f6847b5ed46a15be.tar.bz2
nvim-lspconfig-c070b9d5966645f6aa0df630f6847b5ed46a15be.tar.lz
nvim-lspconfig-c070b9d5966645f6aa0df630f6847b5ed46a15be.tar.xz
nvim-lspconfig-c070b9d5966645f6aa0df630f6847b5ed46a15be.tar.zst
nvim-lspconfig-c070b9d5966645f6aa0df630f6847b5ed46a15be.zip
Update lua/lspconfig/configs.lua
Co-authored-by: Hirokazu Hata <h.hata.ai.t@gmail.com>
Diffstat (limited to 'lua')
-rw-r--r--lua/lspconfig/configs.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lspconfig/configs.lua b/lua/lspconfig/configs.lua
index 092277cd..e48f84b9 100644
--- a/lua/lspconfig/configs.lua
+++ b/lua/lspconfig/configs.lua
@@ -34,7 +34,7 @@ function configs.__newindex(t, config_name, config_def)
-- which is why this is a function, so that it can refer to the settings
-- object on the server.
local function add_handlers(config)
- assert(not config.callbacks, "lsp.callbacks has been deprecated. See here for more: https://github.com/neovim/neovim/pull/12655")
+ assert(config.callbacks, "lsp.callbacks has been obsoleted. See here for more: https://github.com/neovim/neovim/pull/12655")
config.handlers["window/logMessage"] = function(err, method, params, client_id)
if params and params.type <= config.log_level then
-- TODO(ashkan) remove this after things have settled.