We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 165441f commit 68399cbCopy full SHA for 68399cb
src/extension/codelens.ts
@@ -6,7 +6,7 @@ export function activateCodeLens(context: vscode.ExtensionContext) {
6
const codelensProvider = new CodelensProvider()
7
context.subscriptions.push(
8
vscode.languages.registerCodeLensProvider(
9
- { language: 'yaml', pattern: '**/*.yml' }, // Only trigger for YAML files
+ { language: 'yaml' }, // Only trigger for YAML files
10
codelensProvider,
11
),
12
)
0 commit comments