Skip to content

Commit 0f2d7b0

Browse files
committed
inc files for virtual fs
1 parent efbd5c5 commit 0f2d7b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/providers/FileSystemPovider/FileSystemProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class FileSystemProvider implements vscode.FileSystemProvider {
2828
const parent = await this._lookupAsDirectory(uri);
2929
const sql = `CALL %Library.RoutineMgr_StudioOpenDialog(?,,,,,,0)`;
3030
const folder = uri.path === "/" ? "/" : uri.path.replace(/\//g, ".") + "/";
31-
const spec = folder.slice(1) + "*.cls,*.int,*.mac";
31+
const spec = folder.slice(1) + "*.cls,*.inc,*.int,*.mac";
3232
return api
3333
.actionQuery(sql, [spec])
3434
.then(data => data.result.content || [])

0 commit comments

Comments
 (0)