Hongxiang Jiang
Hongxiang Jiang
--- EDIT: This is an issue created to test our new release workflow. We don't have a plan to release v0.42.2 yet --- # Release candidate (TODO: DATE) - [x]...
vscode-go carries different style guides maybe some of the practice was considered best at that time but no longer considered best now. To make the repo easier to maintain, I...
vscode-go's integration test (including the npm test) is running against the [last released go version](https://go.googlesource.com/vscode-go/+/refs/heads/master/build/Dockerfile#3). Before go1.24 is released, the test use 1.23. So vscode-go does not have test coverage...
Right now, the VSCode-Go repo integration test is testing against the last released version. (The definition of released is a version with a tag, both release version v0.17.1 and prerelease...
### gopls version head ### go env ```shell N/A ``` ### What did you do? Execute type definition ### What did you see happen? When the request location is pointing...
This is a feature request derived from [golang/vscode-go#3906](https://github.com/golang/vscode-go/issues/3906) When an error occurred, the vscode-go extension normally inform the user by a notification. Normally, those notification have very limited information about...
``` // They both works ~ cat x.go | goimports ~ cat x.go | goimports-reviser - ``` But the following way, goimports-reviser does not work ``` ~ goimports package main...
### Describe the bug There is a race condition between watcher.Close() and watcher.Add() which my leads to deadlock in windows. ### Code to Reproduce ``` func TestFoo(t *testing.T) { root...