We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00d015a commit 10fcd5aCopy full SHA for 10fcd5a
lua/java-core/server.lua
@@ -86,6 +86,15 @@ function M.get_config(opts)
86
87
root_dir = M.get_root_finder(opts.root_markers),
88
capabilities = vim.lsp.protocol.make_client_capabilities(),
89
+
90
+ handlers = {
91
+ --@TODO
92
+ --overriding '$/progress' is necessary because by default it's using the
93
+ --lspconfig progress handler which prints the wrong value in the latest
94
+ --jdtls version (tested on 1.29.0).
95
+ --https://github.com/neovim/nvim-lspconfig/issues/2897
96
+ ['$/progress'] = vim.lsp.handlers['$/progress'],
97
+ },
98
}
99
100
log.debug('generated config: ', conf)
0 commit comments