gopls/doc: update config settings in documentation

Change-Id: Ieef4c541fdc48afc5b6064b7057edab3a28fefb0
Reviewed-on: https://go-review.googlesource.com/c/tools/+/194686
Run-TryBot: Rebecca Stambler <rstambler@golang.org>
Reviewed-by: Ian Cottrell <iancottrell@google.com>
This commit is contained in:
Rebecca Stambler 2019-09-11 16:13:00 -04:00
parent 7dd31af5a6
commit 63a3583f64

View File

@ -113,7 +113,7 @@ It must be one of:
* "FullDocumentation" * "FullDocumentation"
* "Structured" * "Structured"
**useDeepCompletions** *boolean* **deepCompletion** *boolean*
If true this turns on the ability to return completions from deep inside relevant entities, rather than just the locally accessible ones, for instance it may suggest fields of local variables that match. If true this turns on the ability to return completions from deep inside relevant entities, rather than just the locally accessible ones, for instance it may suggest fields of local variables that match.
@ -121,16 +121,11 @@ If true this turns on the ability to return completions from deep inside relevan
If true then completion responses may contain placeholders inside their snippets. If true then completion responses may contain placeholders inside their snippets.
**wantCompletionDocumentation** *boolean* **completionDocumentation** *boolean*
If true it indicates that the user wants documentation with their completion responses. If true it indicates that the user wants documentation with their completion responses.
**wantSuggestedFixes** *boolean* **completeUnimported** *boolean*
If true this turns on the ability for the analysis system to suggest fixes rather than just report problems.
If supported by the editor, theses fixes can be automatically applied or applied with a single action.
**wantUnimportedCompletions** *boolean*
If true the completion engine is allowed to make suggestions for packages that you do not currently import. If true the completion engine is allowed to make suggestions for packages that you do not currently import.