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: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -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.4.2`, look for `1.4.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.4.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.3`, look for `1.4.4-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.4-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
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,7 @@ The extensions in the InterSystems ObjectScript Extension Pack provide many sett
55
55
|`"objectscript.format.functionCase"`| Case for system functions and system variables. |`"upper"`, `"lower"` or `"word"`|`"word"`| Has no effect if the `InterSystems Language Server` extension is installed and enabled. |
56
56
|`"objectscript.ignoreInstallServerManager"`| Do not offer to install the [intersystems-community.servermanager](https://marketplace.visualstudio.com/items?itemName=intersystems-community.servermanager) extension. |`boolean`|`false`||
57
57
|`"objectscript.multilineMethodArgs"`| List method arguments on multiple lines, if the server supports it. |`boolean`|`false`| Only supported on IRIS 2019.1.2, 2020.1.1+, 2021.1.0+ and subsequent versions! On all other versions, this setting will have no effect. |
58
+
|`"objectscript.openClassContracted"`| Automatically collapse all folding ranges when a class is opened for the first time. |`boolean`|`false`||
58
59
|`"objectscript.overwriteServerChanges"`| Overwrite a changed server version without confirmation when importing the local file. |`boolean`|`false`||
59
60
|`"objectscript.serverSideEditing"`| Allow editing code directly on the server after opening it from ObjectScript Explorer. |`boolean`|`false`||
60
61
|`"objectscript.serverSourceControl.disableOtherActionTriggers"`| Prevent server-side source control 'other action' triggers from firing. |`boolean`|`false`||
Copy file name to clipboardExpand all lines: package.json
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1066,6 +1066,11 @@
1066
1066
"markdownDescription": "List method arguments on multiple lines, if the server supports it. **NOTE:** Only supported on IRIS 2019.1.2, 2020.1.1+, 2021.1.0+ and subsequent versions! On all other versions, this setting will have no effect.",
1067
1067
"type": "boolean",
1068
1068
"default": false
1069
+
},
1070
+
"objectscript.openClassContracted": {
1071
+
"description": "Automatically collapse all folding ranges when a class is opened for the first time.",
0 commit comments