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 efbd5c5 commit 0f2d7b0Copy full SHA for 0f2d7b0
src/providers/FileSystemPovider/FileSystemProvider.ts
@@ -28,7 +28,7 @@ export class FileSystemProvider implements vscode.FileSystemProvider {
28
const parent = await this._lookupAsDirectory(uri);
29
const sql = `CALL %Library.RoutineMgr_StudioOpenDialog(?,,,,,,0)`;
30
const folder = uri.path === "/" ? "/" : uri.path.replace(/\//g, ".") + "/";
31
- const spec = folder.slice(1) + "*.cls,*.int,*.mac";
+ const spec = folder.slice(1) + "*.cls,*.inc,*.int,*.mac";
32
return api
33
.actionQuery(sql, [spec])
34
.then(data => data.result.content || [])
0 commit comments