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
@@ -62,8 +62,8 @@ To unlock these features (optional):
62
62
63
63
1. Download and install a beta version from GitHub. This is necessary because Marketplace does not allow publication of extensions that use proposed APIs.
64
64
- Go to https://github.com/intersystems-community/vscode-objectscript/releases
65
-
- Locate the beta immediately above the release you installed from Marketplace. For instance, if you installed `1.2.2`, look for `1.2.3-beta.1`. This will be functionally identical to the Marketplace version apart from being able to use proposed APIs.
66
-
- Download the VSIX file (for example `vscode-objectscript-1.2.3-beta.1.vsix`) and install it. One way to install a VSIX is to drag it from your download folder and drop it onto the list of extensions in the Extensions view of VS Code.
65
+
- Locate the beta immediately above the release you installed from Marketplace. For instance, if you installed `1.4.1`, look for `1.4.2-beta.1`. This will be functionally identical to the Marketplace version apart from being able to use proposed APIs.
66
+
- Download the VSIX file (for example `vscode-objectscript-1.4.2-beta.1.vsix`) and install it. One way to install a VSIX is to drag it from your download folder and drop it onto the list of extensions in the Extensions view of VS Code.
67
67
68
68
2. From [Command Palette](https://code.visualstudio.com/docs/getstarted/tips-and-tricks#_command-palette) choose `Preferences: Configure Runtime Arguments`.
69
69
3. In the argv.json file that opens, add this line (required for both Stable and Insiders versions of VS Code):
Copy file name to clipboardExpand all lines: docs/SettingsReference.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ The extensions in the InterSystems ObjectScript Extension Pack provide many sett
45
45
|`"objectscript.export.atelier"`| Export source code as Atelier did it, with packages as subfolders. |`boolean`|`true`||
46
46
|`"objectscript.export.category"`| Category of source code to export: `CLS` = classes; `RTN` = routines; `CSP` = csp files; `OTH` = other. Default is `*` = all. |`string` or `object`|`"*"`||
47
47
|`"objectscript.export.dontExportIfNoChanges"`| Do not rewrite the local file if the content is identical to what came from the server. |`boolean`|`false`||
48
-
|`"objectscript.export.filter"`| SQL filter to limit what to export. |`string`|`""`||
48
+
|`"objectscript.export.filter"`| SQL filter to limit what to export. |`string`|`""`|The filter is applied to document names using the [LIKE predicate](https://irisdocs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls?KEY=RSQL_like) (i.e. `Name LIKE '%filter%'`). |
49
49
|`"objectscript.export.folder"`| Folder for exported source code within workspace. |`string`|`"src"`||
50
50
|`"objectscript.export.generated"`| Export generated source code files, such as INTs generated from classes. |`boolean`|`false`||
51
51
|`"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. |
"description": "SQL filter to limit what to export.",
912
+
"markdownDescription": "SQL filter to limit what to export. The filter is applied to document names using the [LIKE predicate](https://irisdocs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls?KEY=RSQL_like) (i.e. `Name LIKE '%filter%'`).",
0 commit comments