diff --git a/src/vs/platform/contextkey/common/contextkey.ts b/src/vs/platform/contextkey/common/contextkey.ts index f578e60070a..5461a40cf07 100644 --- a/src/vs/platform/contextkey/common/contextkey.ts +++ b/src/vs/platform/contextkey/common/contextkey.ts @@ -366,7 +366,7 @@ export class ContextKeyGlobExpr implements ContextKeyExpr { } public evaluate(context: IContext): boolean { - return match(this.value, context.getValue(this.key)) + return match(this.value, context.getValue(this.key)); } public normalize(): ContextKeyExpr {