diff options
Diffstat (limited to 'lsp/jdtls.lua')
| -rw-r--r-- | lsp/jdtls.lua | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lsp/jdtls.lua b/lsp/jdtls.lua index 4a57aa67..5b640a91 100644 --- a/lsp/jdtls.lua +++ b/lsp/jdtls.lua @@ -101,14 +101,6 @@ local function on_workspace_applyedit(err, workspace_edit, ctx) handlers[ctx.method](err, fix_zero_version(workspace_edit), ctx) end --- Non-standard notification that can be used to display progress -local function on_language_status(_, result) - local command = vim.api.nvim_command - command 'echohl ModeMsg' - command(string.format('echo "%s"', result.message)) - command 'echohl None' -end - ---@type vim.lsp.Config return { cmd = { @@ -142,6 +134,5 @@ return { ['textDocument/codeAction'] = on_textdocument_codeaction, ['textDocument/rename'] = on_textdocument_rename, ['workspace/applyEdit'] = on_workspace_applyedit, - ['language/status'] = vim.schedule_wrap(on_language_status), }, } |
