From 21973bae8085077bd647c5ed0b16e8120f15a3b5 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Thu, 27 Apr 2023 12:20:20 -0700 Subject: [PATCH] Fixes #2654 bad config regex --- src/container.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/container.ts b/src/container.ts index c4d163c..98cdb3c 100644 --- a/src/container.ts +++ b/src/container.ts @@ -736,7 +736,7 @@ export class Container { return { ...e, affectsConfiguration: (section, scope) => - /^gitlens\\.(?:modes?|blame|changes|heatmap|codeLens|currentLine|hovers|statusBar)\\b/.test( + /^gitlens\.(?:modes?|blame|changes|heatmap|codeLens|currentLine|hovers|statusBar)\b/.test( section, ) ? true