-
Notifications
You must be signed in to change notification settings - Fork 401
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bad .git matcher in .project's filteredResources causes chaos #2244
Labels
Milestone
Comments
The configurable setting is |
fbricon
added a commit
to fbricon/eclipse.jdt.ls
that referenced
this issue
Sep 28, 2022
Fixes eclipse-jdtls#2244 Signed-off-by: Fred Bricon <[email protected]>
Also for the sake of diagnosing this, |
fbricon
added a commit
to fbricon/eclipse.jdt.ls
that referenced
this issue
Sep 28, 2022
Fixes eclipse-jdtls#2244 Signed-off-by: Fred Bricon <[email protected]>
rgrunber
pushed a commit
that referenced
this issue
Sep 28, 2022
Fixes #2244 Signed-off-by: Fred Bricon <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
jdt.ls adds resource filters to .project files, one of those filters matching
.git
. This caused me to lose several hours trying to figure out why https://github.com/tesla/m2eclipse-egit wasn't compiling in Eclipse, after opening it once in vscode..git
matches folders like foo.egit, causing classes in subfolders to be entirely ignored by the compiler. Attached demo.zip project shows how bad that is:The fix seems to be escaping
.git
as\.git
. But even manual fixes are then overridden after a server restart.The text was updated successfully, but these errors were encountered: