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: docs/ServerSide.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,25 +42,25 @@ Next create a workspace for editing code directly on the server:
42
42

43
43
1. If you want to reopen this workspace in the future, use the command **File > Save Workspace As...** to save it as a `.code-workspace` file.
44
44
45
-
Note that the ObjectScript button is not vivible in the Activity Bar, because the files listed in the Explorer view are all on the server, so it is not needed for this configuration.
45
+
Note that the ObjectScript button is not visible in the Activity Bar, because the files listed in the Explorer view are all on the server, so it is not needed for this configuration.
46
46
47
47
The `.code-workspace` file is a JSON file which you can edit directly, as described in the section [VS Code Workspaces](#code-workspaces). A simple example looks like this:
48
48
```json
49
49
{
50
50
"folders": [
51
51
{
52
52
"name": "iris184:USER",
53
-
"uri": "isfs://iris184/user"
53
+
"uri": "isfs://iris184:user/"
54
54
}
55
55
],
56
56
"settings": {}
57
57
}
58
58
```
59
-
- The `name` property provides a name for this server-side workspace.
59
+
- The `name` property provides a name for this server-side folder.
60
60
- The `uri` property indicates the location of resources on the server. The supplied value has three components:
61
61
- The first component can be either `isfs` or `isfs-readonly`. These values specify that this folder is on an InterSystems IRIS server. `isfs-readonly` specifies read-only access.
62
62
- The value following `://` specifies the name of the server.
63
-
- The value follosing `/` specifies the namespace.
63
+
- The value following the next `:` specifies the namespace (lowercase).
64
64
65
65
To add more root folders to your workspace, giving you access to code in a different namespace, or on a different server, use the context menu on your existing root folder to invoke the `Add Server Namespace to Workspace...` command. This command is also available on the Command Palette.
66
66
@@ -70,11 +70,11 @@ An example of a two-folder workspace in which the second folder gives read-only
0 commit comments