Roland Grunberg

Results 612 comments of Roland Grunberg

I haven't tried this out yet, but I would think you need to place those JDT settings into `.settings/org.eclipse.jdt.core.prefs`.

I think I found the problem. Similar to https://github.com/emacs-lsp/lsp-java/issues/318#issuecomment-783953847 . The `textDocument/formatting` & `textDocument/rangeFormatting` requests take as a parameter (aside from the document itself & the range to apply) [`FormattingOptions`](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#formattingOptions)....

Any comments on https://github.com/eclipse-jdtls/eclipse.jdt.ls/issues/2780#issuecomment-1707046080 ?

@gayanper , this should be fine to merge. Just curious about the questions I had in the comment above.

Looks like it's happening at https://github.com/eclipse-jdt/eclipse.jdt.ui/blob/137f84f326ecb0e0b4663b634915e592b31c7cdc/org.eclipse.jdt.core.manipulation/common/org/eclipse/jdt/core/manipulation/OrganizeImportsOperation.java#L626 . Do you have access to any logging information ? Maybe what the client / server are sending to eac h other when this...

Can you confirm it works on 1.17.0, and started occuring on 1.18.0 ? It also doesn't seem to occur for me if the completion list contains exactly the item I...

From a more recent discussion, we've confirmed this appears to be purely a VS Code client inconsistency in the behaviour of selecting a completion item (to be resolved) vs. clicking...

JDT-LS is just a bundle within an Eclipse OSGi runtime, so it would be difficult to use from your project unless your project was also an OSGi bundle. What particular...

Are there any particular features of JDT-LS you want to use ? I think starting JDT-LS as a separate application (mentioned in my above comment) is worth trying.

I don't think you need to package a separate Java Runtime as long as there is a JRE >= 11 on the Android target (is this the case?). JDT-LS should...