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-7Lines changed: 2 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -174,8 +174,7 @@ In this example two connections have been defined:
174
174
},
175
175
"description": "My local IRIS instance"
176
176
},
177
-
"/default": "my-local",
178
-
"/hideEmbeddedEntries": true
177
+
"/default": "my-local"
179
178
}
180
179
```
181
180
@@ -185,8 +184,6 @@ Notice how you can add a `description` property to each connection. This will be
185
184
186
185
Servers are displayed in the quickpick in the order they are defined in the JSON file. The exception is that if a server name is set as the value of the `/default` property (see example above) it will be shown first in the list.
187
186
188
-
A set of embedded servers with names beginning `default~` will appear at the end of the lists unless you add the property `"/hideEmbeddedEntries": true` to your `intersystems.server` object to hide them (see above).
189
-
190
187
---
191
188
192
189
## Technical Notes
@@ -197,12 +194,10 @@ These features use VS Code's extension-private global state storage. Data is not
197
194
198
195
### The 'All Servers' Folder
199
196
200
-
The `All Servers` tree respects the optional `/default`and `/hideEmbeddedEntries` settings in the `intersystems.servers` JSON.
197
+
The `All Servers` tree respects the optional `/default`setting in the `intersystems.servers` JSON.
201
198
202
199
If a server has been named in `/default` it is promoted to the top of the list, which is otherwise presented in alphabetical order.
203
200
204
-
Embedded entries (built-in default ones) are demoted to the end of the list, or omitted completely if `/hideEmbeddedEntries` is true.
205
-
206
201
---
207
202
208
203
## Information for VS Code Extension Developers - How To Leverage Server Manager
Copy file name to clipboardExpand all lines: package.json
-31Lines changed: 0 additions & 31 deletions
Original file line number
Diff line number
Diff line change
@@ -101,33 +101,6 @@
101
101
"description": "InterSystems servers that other extensions connect to. Each property of this object names a server and holds nested properties specifying how to connect to it.",
102
102
"markdownDescription": "[InterSystems](https://www.intersystems.com) servers that other extensions connect to. Each property of this object names a server and holds nested properties specifying how to connect to it. Server names may only contain characters 'A' to 'Z', 'a' to 'z', digits, '-', '.', '_' and '~' characters.",
103
103
"scope": "resource",
104
-
"default": {
105
-
"default~iris": {
106
-
"webServer": {
107
-
"scheme": "http",
108
-
"host": "127.0.0.1",
109
-
"port": 52773
110
-
},
111
-
"description": "Connection to local InterSystems IRIS™ installed with default settings."
112
-
},
113
-
"default~cache": {
114
-
"webServer": {
115
-
"scheme": "http",
116
-
"host": "127.0.0.1",
117
-
"port": 57772
118
-
},
119
-
"description": "Connection to local InterSystems Caché installed with default settings."
120
-
},
121
-
"default~ensemble": {
122
-
"webServer": {
123
-
"scheme": "http",
124
-
"host": "127.0.0.1",
125
-
"port": 57772
126
-
},
127
-
"description": "Connection to local InterSystems Ensemble installed with default settings."
128
-
},
129
-
"/default": "default~iris"
130
-
},
131
104
"patternProperties": {
132
105
"^[a-z0-9-_~]+$": {
133
106
"type": "object",
@@ -237,10 +210,6 @@
237
210
"/default": {
238
211
"type": "string",
239
212
"description": "Name of the server to promote to the top of pick lists."
240
-
},
241
-
"/hideEmbeddedEntries": {
242
-
"type": "boolean",
243
-
"description": "Do not append the built-in 'default~*' server definitions to pick lists."
0 commit comments