Skip to content

Commit

Permalink
internal/lsp: turn fuzzy matching and deep completions back on
Browse files Browse the repository at this point in the history
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 <[email protected]>
Reviewed-by: Ian Cottrell <[email protected]>
  • Loading branch information
stamblerre committed Sep 12, 2019
1 parent b0a6c2a commit 87d9f09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/lsp/source/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ var (
},
Completion: CompletionOptions{
Documentation: true,
Deep: false,
FuzzyMatching: false,
Deep: true,
FuzzyMatching: true,
},
}
)
Expand Down

0 comments on commit 87d9f09

Please sign in to comment.