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 2ef5cc0 + 0b122e1 commit a69d90aCopy full SHA for a69d90a
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