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.
2 parents fd33dc5 + 4fca8ef commit a614fdeCopy full SHA for a614fde
.changeset/sweet-turkey-try.md
@@ -0,0 +1,5 @@
1
+---
2
+'@shopify/theme-language-server-common': patch
3
4
+
5
+Added jj to the URI prefixes ignored by hasUnsupportedDocument
packages/theme-language-server-common/src/server/startServer.ts
@@ -75,7 +75,9 @@ const hasUnsupportedDocument = (params: any) => {
75
'textDocument' in params &&
76
'uri' in params.textDocument &&
77
typeof params.textDocument.uri === 'string' &&
78
- (params.textDocument.uri.startsWith('git:') || params.textDocument.uri.startsWith('output:'))
+ (params.textDocument.uri.startsWith('jj:') ||
79
+ params.textDocument.uri.startsWith('git:') ||
80
+ params.textDocument.uri.startsWith('output:'))
81
);
82
};
83
0 commit comments