1
0
mirror of https://github.com/golang/go synced 2024-11-18 17:44:47 -07:00

internal/lsp: turn fuzzy matching and deep completions back on

We turned them off for the release, but let's keep them on at master so
that we can get more feedback.

Change-Id: Iaadf27d59ef925ba8ee2bc02acbb9c77c2935ce2
Reviewed-on: https://go-review.googlesource.com/c/tools/+/195059
Run-TryBot: Rebecca Stambler <rstambler@golang.org>
Reviewed-by: Ian Cottrell <iancottrell@google.com>
This commit is contained in:
Rebecca Stambler 2019-09-12 13:53:18 -04:00
parent b0a6c2aa3f
commit 87d9f09c5d

View File

@ -30,8 +30,8 @@ var (
}, },
Completion: CompletionOptions{ Completion: CompletionOptions{
Documentation: true, Documentation: true,
Deep: false, Deep: true,
FuzzyMatching: false, FuzzyMatching: true,
}, },
} }
) )