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 2ef5cc0 commit 0b122e1Copy full SHA for 0b122e1
src/providers/DocumentContentProvider.ts
@@ -57,7 +57,7 @@ export class DocumentContentProvider implements vscode.TextDocumentContentProvid
57
const fileName = name
58
.split(".")
59
.slice(0, -1)
60
- .join(fileExt.match(/cls/i) ? "/" : ".");
+ .join(/cls|mac|int|inc/i.test(fileExt) ? "/" : ".");
61
name = fileName + "." + fileExt;
62
uri = wFolderUri.with({
63
path: `/${name}`,
0 commit comments