Roland Grunberg
Roland Grunberg
I think this is possible with just adjusting how we use the `GenerateToStringOperation` and its underlying API. From Eclipse IDE, I see :  We don't need...
I would look at https://github.com/redhat-developer/vscode-java/issues/177#issuecomment-673333479 as that issue has a pretty comprehensive guide on the options. Generally `build-helper-maven-plugin` seems to be what is working for most people. I just tried...
Seems like exactly what https://github.com/redhat-developer/vscode-java/issues/304 was suggesting. Looks like https://github.com/dgileadi/vscode-java-decompiler/issues/3 mentions some of the issues you're seeing. Seems to me like this is something one of the decompiler extensions should...
We could potentially do what the `document/definition` request does at [`JDTUtils.searchDecompiledSources`](https://github.com/eclipse/eclipse.jdt.ls/blob/ed4a7cffc08834c47fdc9e3d032c82b924122697/org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/handlers/NavigateToDefinitionHandler.java#L186A) -> .. -> [`DisassemblerContentProvider.getContent(..)`](https://github.com/eclipse/eclipse.jdt.ls/blob/ed4a7cffc08834c47fdc9e3d032c82b924122697/org.eclipse.jdt.ls.core/src/org/eclipse/jdt/ls/core/internal/DisassemblerContentProvider.java#L52). On the client side I think we'd just need to register a content provider for...
That definitely looks like a typo.
I just tried this out and can confirm the behaviour : ``` [2022-10-07 09:51:24.566] [renderer1] [error] ["IncompatiblePreRelease: Can't install pre-release version of 'redhat.vscode-yaml' extension because it is not compatible with...
If I inspect the `extension.vsixmanifest` of `[email protected]`, I see `` . However, if I manually install it (which succeeds), and look at the `package.json` inside the extension installation folder, I...
For vscode-yaml, I think the issue is at https://github.com/redhat-developer/vscode-yaml/blob/main/Jenkinsfile#L48 . This is the only place I see the `--pre-release` flag used, and it only publishes a generic version on platforms...
I was able to reproduce the same behaviour on Linux : ``` Version: 2022-09 (4.25) Build id: I20220831-1800 Buildship: Eclipse Plug-ins for Gradle 3.1.6.v20220511-1359 org.eclipse.buildship.feature.group Eclipse Buildship ```
As you mentioned, we can't use flexmark-java because it requires a Java 11 runtime. Is there any chance we can upstream a fix to revert to Java 8 (at least...