From aa97f6190201cecf159292d07a2f78edc2bc54c7 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Fri, 9 Mar 2018 08:57:31 +0100 Subject: [PATCH] fix #42878 --- src/vs/editor/contrib/suggest/completionModel.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/editor/contrib/suggest/completionModel.ts b/src/vs/editor/contrib/suggest/completionModel.ts index 3241e05a495..6157cf74fc9 100644 --- a/src/vs/editor/contrib/suggest/completionModel.ts +++ b/src/vs/editor/contrib/suggest/completionModel.ts @@ -174,6 +174,7 @@ export class CompletionModel { // use a score of `-100` because that is out of the // bound of values `fuzzyScore` will return item.score = -100; + item.matches = undefined; } else if (typeof suggestion.filterText === 'string') { // when there is a `filterText` it must match the `word`.