From ae79e128df9e2fc3ab9c88ef05fb19a4db8cfae3 Mon Sep 17 00:00:00 2001 From: Rebecca Stambler Date: Mon, 10 Jun 2019 15:07:34 -0400 Subject: [PATCH] vscode settings: enable find references --- gopls.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gopls.md b/gopls.md index 4a681787..2ae42557 100644 --- a/gopls.md +++ b/gopls.md @@ -40,7 +40,8 @@ Use the [VSCode-Go](https://github.com/microsoft/vscode-go) plugin, with the fol ```json5 "go.useLanguageServer": true, "go.languageServerExperimentalFeatures": { - "diagnostics": true // for build and vet errors as you type + "diagnostics": true, // for build and vet errors as you type + "references": true // for finding in-package references }, "[go]": { "editor.snippetSuggestions": "none",