diff options
| author | Iron-E <36409591+Iron-E@users.noreply.github.com> | 2020-11-15 19:33:20 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-15 19:33:20 -0500 |
| commit | c070b9d5966645f6aa0df630f6847b5ed46a15be (patch) | |
| tree | 52e7ccd84fd8a43946571ce8b62569c86a96b92c /lua | |
| parent | Remove redundant assertion (diff) | |
| download | nvim-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.lua | 2 |
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. |
