Jinbo Wang
Jinbo Wang
They two likely points to the same download host. How about downloading it directly from the github repo release page https://github.com/github/CopilotForXcode/releases?
Thank you for the feedback. Agree, the built-in update is more easy to use. I’ll continue monitoring the slow-update issue for a while longer to see if it impacts more...
@askzy @guoyaoming-zsxq thanks for reaching out. Would you mind sharing the sampling data from Activity Monitor?
thanks for reporting the issue. I can reproduce it. The markdown engine has performance issue to render such kind of markdown text. let's see how to improve it either the...
This error is not related to the completion limit reached. The completion limit reached is popped up by mistake. It seems related to the completion request timeout with the new...
The 'Run Maven Commands' feature simply generates the command line and executes it in your terminal. It should behave the same as you manually run it in the terminal. Can...
Use the modular one https://github.com/openjfx/samples/tree/master/CommandLine/Modular/Maven/hellofx, the debug works in vscode. But the non modular one https://github.com/openjfx/samples/tree/master/HelloFX/Maven cannot debug in vscode. This looks like an issue on generating the launching command...
You can use vscode to launch your program directly. Only need click the **Debug** code lens.  If you prefer to use mvn to launch your program, please reference the...
This config is correct. Maybe there are some environment issues. Please try the alternative way. Follow the comment https://github.com/Microsoft/vscode-java-debug/issues/120#issuecomment-417269773, use preLaunchTask to launch your program, then F5 to attach to...
`module-info.java` is not auto generated. You need manage it by yourself. Having `module-info.java` means your program will be launched as a Java module (module is introduced in java 9). Without...