You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ServerSide.md
+9-8Lines changed: 9 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -147,14 +147,15 @@ Changes you make to files opened from this root folder of your VS Code workspace
147
147
148
148
The query string of the `uri` property accepts several parameters that control filtering and display of the server-side entities. The examples below access the USER namespace on the server whose definition is named 'myserver'.
149
149
150
-
-`isfs://myserver:user?type=cls`, shows only classes
151
-
-`isfs://myserver:user?type=rtn`, shows only mac, int and inc files
152
-
-`isfs://myserver:user?generated=1`, shows generated files as well as not generated
153
-
-`isfs://myserver:user?filter=%Z*.mac,%z*.mac`, comma-delimited list of search options, ignores `type`. The default is `*.cls,*.inc,*.mac,*.int`. To see all files, use `*`.
154
-
-`isfs://myserver:user?flat=1`, a flat list of files. Does not split packages as folders. Cannot be combined with `csp`.
155
-
-`isfs://myserver:user?project=prjname`, shows only files in project `prjname`. Cannot be combined with any other parameter.
156
-
157
-
The options `flat` and `generated` can be combined with each other, and with `type` or `filter`. If `filter` is specified, `type` is ignored.
150
+
-`isfs://myserver:user/?type=cls`, shows only classes
151
+
-`isfs://myserver:user/?type=rtn`, shows only mac, int and inc files
152
+
-`isfs://myserver:user/?generated=1`, shows generated files as well as not generated
153
+
-`isfs://myserver:user/?filter=%Z*.mac,%z*.mac`, comma-delimited list of search options, ignores `type`. The default is `*.cls,*.inc,*.mac,*.int`. To see all files, use `*`.
154
+
-`isfs://myserver:user/?flat=1`, a flat list of files. Does not split packages as folders. Cannot be combined with `csp`.
155
+
-`isfs://myserver:user/?project=prjname`, shows only files in project `prjname`. Cannot be combined with any other parameter.
156
+
-`isfs://myserver:user/?mapped=0`, hides files that are mapped from a non-default database
157
+
158
+
The options `flat`, `generated` and `mapped` can be combined with each other, and with `type` or `filter`. If `filter` is specified, `type` is ignored.
Copy file name to clipboardExpand all lines: docs/SettingsReference.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,7 @@ The extensions in the InterSystems ObjectScript Extension Pack provide many sett
51
51
|`"objectscript.export.folder"`| Folder for exported source code within workspace. |`string`|`"src"`||
52
52
|`"objectscript.export.generated"`| Export generated source code files, such as INTs generated from classes. |`boolean`|`false`||
53
53
|`"objectscript.export.map"`| Map file names before export, with regexp pattern as a key and replacement as a value. |`object`|`{}`| For example, `{ \"%(.*)\": \"_$1\" }` to make % classes or routines use underscore prefix instead. |
54
+
|`"objectscript.export.mapped"`| Export source code files mapped from a non-default database. |`boolean`|`true`||
54
55
|`"objectscript.export.maxConcurrentConnections"`| Maximum number of concurrent export connections. |`number`|`0`| 0 = unlimited |
55
56
|`"objectscript.export.noStorage"`| Strip the storage definition on export. |`boolean`|`false`| Can be useful when working across multiple systems. |
56
57
|`"objectscript.format.commandCase"`| Case for commands. |`"upper"`, `"lower"` or `"word"`|`"word"`| Has no effect if the `InterSystems Language Server` extension is installed and enabled. |
0 commit comments