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 8fa5acb commit eb6e760Copy full SHA for eb6e760
packages/tailwindcss-language-server/src/tw.ts
@@ -792,6 +792,11 @@ export class TW {
792
// to normalize it so that we can compare it properly.
793
fsPath = normalizeDriveLetter(fsPath)
794
795
+ console.debug('[GLOBAL] Matching project to document', {
796
+ fsPath,
797
+ normalPath,
798
+ })
799
+
800
for (let project of this.projects.values()) {
801
if (!project.projectConfig.configPath) {
802
fallbackProject = fallbackProject ?? project
@@ -812,6 +817,8 @@ export class TW {
812
817
return 0
813
818
})
814
819
820
+ console.debug('[GLOBAL] Checking selectors', documentSelector)
821
815
822
for (let selector of documentSelector) {
816
823
let pattern = selector.pattern.replace(/[\[\]{}]/g, (m) => `\\${m}`)
824
0 commit comments