From 87d9f09c5d89af11d60862c48a7869a0a75b3543 Mon Sep 17 00:00:00 2001 From: Rebecca Stambler Date: Thu, 12 Sep 2019 13:53:18 -0400 Subject: [PATCH] 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 Reviewed-by: Ian Cottrell --- internal/lsp/source/options.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/lsp/source/options.go b/internal/lsp/source/options.go index 2501a45618..4bdcd3d9b1 100644 --- a/internal/lsp/source/options.go +++ b/internal/lsp/source/options.go @@ -30,8 +30,8 @@ var ( }, Completion: CompletionOptions{ Documentation: true, - Deep: false, - FuzzyMatching: false, + Deep: true, + FuzzyMatching: true, }, } )