Skip to content

Commit 13f8edb

Browse files
committed
extension: update gopls v0.18.1-pre.1 settings
This is an automated CL which updates the gopls version and settings. For golang/go#71882 Change-Id: Ib189aac783f1d6ab4498aaf7d4fe828aa491d135 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/651218 Auto-Submit: Gopher Robot <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Robert Findley <[email protected]> kokoro-CI: kokoro <[email protected]> Reviewed-by: Alan Donovan <[email protected]>
1 parent c08eba5 commit 13f8edb

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

docs/settings.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,16 @@ Default: `false`
850850
hoverKind controls the information that appears in the hover text.
851851
SingleLine is intended for use only by authors of editor plugins.
852852
<br/>
853-
Allowed Options: `FullDocumentation`, `NoDocumentation`, `SingleLine`, `SynopsisDocumentation`
853+
Allowed Options:
854+
855+
* `FullDocumentation`
856+
* `NoDocumentation`
857+
* `SingleLine`
858+
* `Structured`: `"Structured"` is a misguided experimental setting that returns a JSON
859+
hover format. This setting should not be used, as it will be removed in a
860+
future release of gopls.
861+
* `SynopsisDocumentation`
862+
854863

855864
Default: `"FullDocumentation"`
856865
### `ui.documentation.linkTarget`

extension/package.json

+2
Original file line numberDiff line numberDiff line change
@@ -2428,12 +2428,14 @@
24282428
"FullDocumentation",
24292429
"NoDocumentation",
24302430
"SingleLine",
2431+
"Structured",
24312432
"SynopsisDocumentation"
24322433
],
24332434
"markdownEnumDescriptions": [
24342435
"",
24352436
"",
24362437
"",
2438+
"`\"Structured\"` is a misguided experimental setting that returns a JSON\nhover format. This setting should not be used, as it will be removed in a\nfuture release of gopls.\n",
24372439
""
24382440
],
24392441
"default": "FullDocumentation",

0 commit comments

Comments
 (0)