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 85f606c commit e32c983Copy full SHA for e32c983
src/providers/DocumentContentProvider.ts
@@ -245,7 +245,7 @@ export class DocumentContentProvider implements vscode.TextDocumentContentProvid
245
246
public async provideTextDocumentContent(uri: vscode.Uri, token: vscode.CancellationToken): Promise<string> {
247
const api = new AtelierAPI(uri);
248
- // Even though this is technically a "objectscript" Uri, the query parameters are the same as "isfs"
+ // Even though this is technically an "objectscript" Uri, the query parameters are the same as "isfs"
249
const { csp, ns } = isfsConfig(uri);
250
const fileName = csp ? uri.path.slice(1) : uri.path.split("/").slice(1).join(".");
251
if (ns) api.setNamespace(ns);
0 commit comments