We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb5993d commit 8766f6dCopy full SHA for 8766f6d
packages/vscode-tailwindcss/src/extension.ts
@@ -243,7 +243,7 @@ export async function activate(context: ExtensionContext) {
243
documentSelector: languages.get(folder.uri.toString()).map((language) => ({
244
scheme: 'file',
245
language,
246
- pattern: `${folder.uri.fsPath}/**/*`,
+ pattern: `${folder.uri.fsPath.replace(/[\[\]\{\}]/g, '?')}/**/*`,
247
})),
248
diagnosticCollectionName: CLIENT_ID,
249
workspaceFolder: folder,
0 commit comments