From 59c6680fe2c1e4ba0c3f0b11ddec52531d8dc8b4 Mon Sep 17 00:00:00 2001 From: Rebecca Stambler Date: Fri, 20 Sep 2019 14:26:45 -0400 Subject: [PATCH] gopls/doc: fix typo in settings Change-Id: Ia504ebccae77db5533c8a29a455f074068db78b4 Reviewed-on: https://go-review.googlesource.com/c/tools/+/196663 Reviewed-by: Ian Cottrell Run-TryBot: Rebecca Stambler TryBot-Result: Gobot Gobot --- gopls/doc/vscode.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gopls/doc/vscode.md b/gopls/doc/vscode.md index 83526aafde..dd2be6a08b 100644 --- a/gopls/doc/vscode.md +++ b/gopls/doc/vscode.md @@ -14,10 +14,10 @@ Use the [VSCode-Go] plugin, with the following configuration: "gopls": { "usePlaceholders": true, // add parameter placeholders when completing a function - // ----- Experimental settings ----- + // Experimental settings "completeUnimported": true, // autocomplete unimported packages - "watchChangedFiles": true, // watch file changes outside of the editor - "deepComplete": true, // deep completion + "watchChangedFiles": true, // watch file changes outside of the editor + "deepCompletion": true, // enable deep completion }, "files.eol": "\n", // formatting only supports LF line endings ```