Yan Zhang
Yan Zhang
I'm looking into completion issues in JDT language server recently. I tried above steps (provided by @Palidino @timgott @Mihai-MCW ), but failed to reproduce. See below: https://user-images.githubusercontent.com/2351748/132548663-829fd5f3-d3f9-4614-a230-f17e2a137694.mp4 (I notice serveral...
That's because the setting `java.configuration.runtimes` in JDTLS is globally effective. Though [its scope](https://github.com/redhat-developer/vscode-java/blob/86c572da0751dc4527cd1f052f4a1cb5d45d4e68/package.json#L674-L727) is machine-**overridable**, it won't take effect if you set different values for different workspace folders. `java.configuration.runtimes` defines...
I think @xxc-zsz wants to run Gradle task `:test` for project `dee_api_gw`, and wants to save the action. AFAIK [Tasks](https://code.visualstudio.com/docs/editor/tasks) is for that. You probably want to install [Gradle extension](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-gradle)...
It's about [Live Share](https://visualstudio.microsoft.com/services/live-share/) experience, where multiple users can collaborate in the same workspace, editing, debugging, etc... I remember this was an edge case I found when I was playing...
I'm not a LiveShare expert, and it was years ago. As far as I know, at that time LiveShare can fetch all "host" related items (codelens, hovering, ..etc) from vscode...
The profile support is on the plan, as long as the checkbox api is ready in vscode, we can implement it. See https://github.com/microsoft/vscode-maven/issues/744#issuecomment-1274327955 Hope it would mitigate the issue a...
fixed by #883, as verified in https://github.com/microsoft/vscode-maven/issues/887#issuecomment-1293359003
closing obsolete PR.
> The build still passes. Is this safe ? @rgrunber Probably we should upgrade version of typescript. See https://github.com/microsoft/TypeScript/issues/1778#issuecomment-913202933
For common properties required for a new project (e.g. groupId and artifactId), we use vscode's UI for more user-friendly experience. For some archetypes, there are customized required properties. In this...