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 b7b3dd9 commit 6a97e94Copy full SHA for 6a97e94
init.lua
@@ -151,7 +151,7 @@ vim.opt.rtp:prepend(lazypath)
151
-- :Lazy update
152
--
153
-- See HACK below...
154
--- jdtls_already_ran = false
+jdtls_already_ran = false
155
-- NOTE: Here is where you install your plugins.
156
require('lazy').setup({
157
@@ -717,10 +717,10 @@ require('lazy').setup({
717
end,
718
jdtls = function()
719
-- HACK: Don't know why this gets called more than once
720
- -- if jdtls_already_ran then
721
- -- return
722
- -- end
723
- -- jdtls_already_ran = true
+ if jdtls_already_ran then
+ return
+ end
+ jdtls_already_ran = true
724
require('java').setup {
725
-- Your custom jdtls settings goes here
726
-- Do not automatically install JDK 17
0 commit comments