Fred Bricon

Results 583 comments of Fred Bricon

MicroProfileConfigASTValidator is Microprofile specific, but Quarkus projects use a specific DurationConverter. MicroProfileConfigASTValidator would need to load converters in a dynamic way (using special classloader) then we could validate via reflection,...

> While we're here, I think it would be reassuring to name this as something less ominous for what it is, perhaps `CopyBufferService` done

A "safer" (probably), but uglier (definitely) way to track clipboard changes would be to register a function that'd poll the clipboard content every X (500?)ms. That's what https://github.com/arjun-g/electron-clipboard-extended does.

In the absence of a proper clipboard eventing mechanism (https://github.com/continuedev/continue/commit/449d0b52532e1862d6b8b0eb281de80b535a3232 is too limited) I'd rather prefer a solution where the clipboard content is checked when needed, so no need to...

Thanks @angelozerr! Now the same fix needs to be applied in the JDT implem.

Now that I think of it, we should add an actual schema for xsi, under the hood, so that'd provide completion, hover and validation support for xsi without having to...

is your project public? We're having a hard time reproducing this problem.

try enabling the javac compiler in your settings.json: > "java.jdt.ls.javac.enabled": "on"

You need Java 24 to run the Java language server, to enable the javac compiler, but you can still use Java 17 to compile your project. See https://github.com/redhat-developer/vscode-java/wiki/JDK-Requirements#project-jdks

because by default, vscode-java relies on the ECJ compiler, which is a different implementation from javac. Sometimes discrepancies between the compilers can occur, unfortunately. @jjohnstn is this a JDT issue...