Skip to content

Commit 893a085

Browse files
committed
small tweaks
1 parent 38ae6df commit 893a085

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
},
8484
{
8585
"view": "ObjectScriptExplorer",
86-
"contents": "Connect a local workspace folder to an [InterSystems server](https://docs.intersystems.com/components/csp/docbook/DocBook.UI.Page.cls?KEY=GVSCO_ssworkflow) if you want to export or import ObjectScript code.\n[Choose Server and Namespace](command:vscode-objectscript.connectFolderToServerNamespace)\nOr [hide this ObjectScript view](command:vscode-objectscript.hideExplorerForWorkspace) if it is not needed for the current workspace.",
86+
"contents": "Connect a local workspace folder to an [InterSystems server](https://docs.intersystems.com/components/csp/docbook/DocBook.UI.Page.cls?KEY=GVSCO_ssworkflow) if you want to export or import ObjectScript code.\n[Choose Server and Namespace](command:vscode-objectscript.connectFolderToServerNamespace)\nOr [hide this view](command:vscode-objectscript.hideExplorerForWorkspace) if it is not needed for the current workspace.",
8787
"when": "vscode-objectscript.explorerRootCount == 0"
8888
},
8989
{
@@ -1382,7 +1382,7 @@
13821382
"objectscript.showExplorer": {
13831383
"type": "boolean",
13841384
"default": true,
1385-
"description": "Show the ObjectScript Explorer view."
1385+
"description": "Show the InterSystems Explorer view."
13861386
},
13871387
"objectscript.compileFlags": {
13881388
"type": "string",
@@ -1479,7 +1479,7 @@
14791479
"default": false
14801480
},
14811481
"objectscript.explorer.alwaysShowServerCopy": {
1482-
"description": "Always show the server copy of a document in the ObjectScript Explorer.",
1482+
"description": "Always show the server copy of a document opened from the InterSystems Explorer.",
14831483
"type": "boolean",
14841484
"default": false
14851485
},

src/explorer/explorer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ export class ObjectScriptExplorerProvider implements vscode.TreeDataProvider<Nod
158158
.then((data) => data.map((ns) => ({ label: ns })))
159159
.then((data) =>
160160
vscode.window.showQuickPick(data, {
161-
placeHolder: `Choose a namespace on ${api.config.host}:${api.config.port} to add to ObjectScript Explorer`,
161+
placeHolder: `Choose a namespace on ${api.config.host}:${api.config.port} to add to the Explorer`,
162162
})
163163
)
164164
.then((ns) => this.showExtra4Workspace(workspaceFolder, ns.label))

0 commit comments

Comments
 (0)