1
0
mirror of https://github.com/golang/go synced 2024-11-18 11:14:39 -07:00

gopls/doc: fix typo in settings

Change-Id: Ia504ebccae77db5533c8a29a455f074068db78b4
Reviewed-on: https://go-review.googlesource.com/c/tools/+/196663
Reviewed-by: Ian Cottrell <iancottrell@google.com>
Run-TryBot: Rebecca Stambler <rstambler@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Rebecca Stambler 2019-09-20 14:26:45 -04:00
parent 71c3ad9cb7
commit 59c6680fe2

View File

@ -14,10 +14,10 @@ Use the [VSCode-Go] plugin, with the following configuration:
"gopls": { "gopls": {
"usePlaceholders": true, // add parameter placeholders when completing a function "usePlaceholders": true, // add parameter placeholders when completing a function
// ----- Experimental settings ----- // Experimental settings
"completeUnimported": true, // autocomplete unimported packages "completeUnimported": true, // autocomplete unimported packages
"watchChangedFiles": true, // watch file changes outside of the editor "watchChangedFiles": true, // watch file changes outside of the editor
"deepComplete": true, // deep completion "deepCompletion": true, // enable deep completion
}, },
"files.eol": "\n", // formatting only supports LF line endings "files.eol": "\n", // formatting only supports LF line endings
``` ```