Skip to content

Commit

Permalink
small tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
isc-bsaviano committed Jan 4, 2024
1 parent 38ae6df commit 893a085
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
{
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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
},
Expand Down
2 changes: 1 addition & 1 deletion src/explorer/explorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export class ObjectScriptExplorerProvider implements vscode.TreeDataProvider<Nod
.then((data) => 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))
Expand Down

0 comments on commit 893a085

Please sign in to comment.