Roland Grunberg
Roland Grunberg
Closing for now but feel free to re-open if there are other issues here. `java.project.referencedLibraries` is definitely the setting needed for more custom support of jar libraries where the project...

There seems to be a context menu item from the explorer menu to `Add Folder to Java Source Path` but it looks like we don't currently support it if the...
https://github.com/eclipse/eclipse.jdt.ls/issues/964#issuecomment-479903286 As mentioned, would be best if m2e/buildship synced the changes back into the build files.
We have settings within the language server to configure the classpath & source path when a project is not managed by Maven or Gradle. Such projects are referred to as...
Some possible information of interest : * [x] Invisible/Maven/Gradle project on import * [x] `org.eclipse.jdt.core.compiler.source` value for a project * [x] "Size of Project" ? : LOC / # of...
I'm not able to reproduce with the exact instructions above. The file disappears for me before I have a chance to type into it (whether I restart VS Code or...
Looks like both didChange and didOpen trigger foldingRange later on, so it could be that we're both seeing the same error, but maybe certain clients try to prevent a didOpen...
Maybe something like : ```diff diff --git a/org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/JDTUtils.java b/org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/JDTUtils.java index 4d691a46..ad47b113 100644 --- a/org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/JDTUtils.java +++ b/org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/JDTUtils.java @@ -189,7 +189,7 @@ public final class JDTUtils { } public static ICompilationUnit resolveCompilationUnit(IFile...
I would try filing against JDT Core, upstream if it's both VS Code, and Eclipse, since it could be a bug in JDT Core, which we do use. Seems similar...