From 893a085e1d45d802213dd83599125cfbe2ea3b5e Mon Sep 17 00:00:00 2001 From: Brett Saviano Date: Thu, 4 Jan 2024 13:17:58 -0500 Subject: [PATCH] small tweaks --- package.json | 6 +++--- src/explorer/explorer.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index e239756e..c3602625 100644 --- a/package.json +++ b/package.json @@ -83,7 +83,7 @@ }, { "view": "ObjectScriptExplorer", - "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.", + "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.", "when": "vscode-objectscript.explorerRootCount == 0" }, { @@ -1382,7 +1382,7 @@ "objectscript.showExplorer": { "type": "boolean", "default": true, - "description": "Show the ObjectScript Explorer view." + "description": "Show the InterSystems Explorer view." }, "objectscript.compileFlags": { "type": "string", @@ -1479,7 +1479,7 @@ "default": false }, "objectscript.explorer.alwaysShowServerCopy": { - "description": "Always show the server copy of a document in the ObjectScript Explorer.", + "description": "Always show the server copy of a document opened from the InterSystems Explorer.", "type": "boolean", "default": false }, diff --git a/src/explorer/explorer.ts b/src/explorer/explorer.ts index 3eb6a6ff..76684c25 100644 --- a/src/explorer/explorer.ts +++ b/src/explorer/explorer.ts @@ -158,7 +158,7 @@ export class ObjectScriptExplorerProvider implements vscode.TreeDataProvider data.map((ns) => ({ label: ns }))) .then((data) => vscode.window.showQuickPick(data, { - placeHolder: `Choose a namespace on ${api.config.host}:${api.config.port} to add to ObjectScript Explorer`, + placeHolder: `Choose a namespace on ${api.config.host}:${api.config.port} to add to the Explorer`, }) ) .then((ns) => this.showExtra4Workspace(workspaceFolder, ns.label))