1- ## v0.17.0 - 17th Sep, 2020
1+ ## v0.17.0 - 18th Sep, 2020
22
33Go code debugging and code coverage support is getting better.
44
55The extension will help you stay updated with the new Go releases.
66
77### New Features
88
9- - Delve's function call feature is now accessible. To use this feature,
10- explicitly specify the ` call ` command. E.g. ` call myAwesomeFunc() ` .
9+ - Delve's [ call] ( https://github.com/go-delve/delve/tree/master/Documentation/cli#call ) feature is now accessible.
10+ To use this feature, explicitly specify the ` call ` command. E.g. ` call myAwesomeFunc() ` .
11+ It is an experimental feature in Delve.
12+ Please see [ the current limitations] ( https://github.com/go-delve/delve/tree/master/Documentation/cli#call ) .
1113([ Issue 100] ( https://github.com/golang/vscode-go/issues/100 ) )
1214- The extension checks the go official download site and notifies users of
1315newly available Go versions. When a newer version is available,
@@ -68,7 +70,7 @@ enabled, the extension runs `go` commands with `-i`, which is no longer
6870recommended with recent versions of Go.
6971([ Issue 568] ( https://github.com/golang/vscode-go/issues/568 ) )
7072- Fixed a bug where we are not sending back 'configuration done' response.
71- (( [ Issue eclipse-theia/theia #8455 ] ( https://github.com/eclipse-theia/theia/issues/8455 ) ,
73+ ([ Issue eclipse-theia/theia #8455 ] ( https://github.com/eclipse-theia/theia/issues/8455 ) ,
7274[ CL 254959] ( https://go-review.googlesource.com/c/vscode-go/+/254959 ) )
7375
7476### Documentation
@@ -88,18 +90,12 @@ to help debugging.
8890### Experimental Features
8991
9092- We plan to delegate computation of various ` run test ` CodeLenses to ` gopls ` .
91- The feature can be enabled with the following setting:
93+ This experimental feature can be enabled with the following setting:
9294```
9395"go.useLanguageServer": true,
9496"gopls": {
9597 "codelens": { "test": true }
9698}
97- "go.overwriteGoplsMiddleware": {
98- "codelens": {
99- "test": true,
100- "bench": true
101- }
102- }
10399```
104100
105101### Thanks
0 commit comments