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
+6-6
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ On-line course from CaretDev - [Developing with VSCode ObjectScript – Easy Sta
23
23
- Debugging ObjectScript code
24
24
- Intellisense support for commands, system functions, and class members.
25
25
- Export existing sources to the working directory: press Cmd/Ctrl+Shift+P, type 'ObjectScript', press Enter.
26
-
- Save and compile a class: press Ctrl+F7 (⌘+F7) or select "ObjectScript: Save and compile" from Cmd/Ctrl+Shift+P menu.
26
+
- Save and compile a class: press <kbd>Ctrl</kbd>+<kbd>F7</kbd> (<kbd>⌘</kbd>+<kbd>F7</kbd>) or select "ObjectScript: Save and compile" from <kbd>Cmd</kbd>/<kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd> menu.
27
27
- Server Explorer with possibility to export items
28
28
- Edit directly on server
29
29
@@ -51,17 +51,17 @@ To be able to use many plugin features, you need to configure the connection to
51
51
}
52
52
```
53
53
54
-
Or you can edit it through settings editor. Which you can open from menu *Code* > *Preferences* > *Settings* for macOS or *File* > *Preferences* > *Settings* for Windows, search for "workspace settings" through Command Palette [⌘⇧P/Ctrl+Shift+P] or by shortcut [⌘,/Ctrl+,].
54
+
Or you can edit it through settings editor. Which you can open from menu *Code* > *Preferences* > *Settings* for macOS or *File* > *Preferences* > *Settings* for Windows, search for "workspace settings" through Command Palette [<kbd>⌘⇧P</kbd>/<kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd>] or by shortcut [<kbd>⌘</kbd>+<kbd>,</kbd>/<kbd>Ctrl</kbd>+<kbd>,</kbd>].
55
55
56
56
- Find a 'objectscript', do not forget to set `active` to `true`
57
-
`port` should follow to web port of instance (usually by default, 52773 for Caché/Ensemble, 52773 for IRIS) 
57
+
`port` should follow to web port of instance (usually by default, `57772` for Caché/Ensemble, `52773` for IRIS) 
58
58
- Change settings according to your Caché/IRIS instance
59
59
- You will see related output in "Output" while switched to "ObjectScript" channel (right drop-down menu on top of the output window)
60
60
61
61
## Notes
62
62
63
-
For Caché/IRIS instance with maximum security level, add '%Development' role for '/api/atelier/' web-application ( [More](https://community.intersystems.com/post/using-atelier-rest-api) )
64
-
If you are getting 'ERROR #5540: SQLCODE: -99 Message: User xxx is not privileged for the operation' when you try to get/refresh class/routine/includes lists, grant a following SQL Procedure to your user on target namespace.
63
+
For Caché/IRIS instance with maximum security level, add `%Development` role for `/api/atelier/` web-application ( [More](https://community.intersystems.com/post/using-atelier-rest-api) )
64
+
If you are getting `ERROR #5540: SQLCODE: -99 Message: User xxx is not privileged for the operation` when you try to get/refresh class/routine/includes lists, grant a following SQL Procedure to your user on target namespace.
65
65
```SQL
66
-
grant execute on %Library.RoutineMgr_StudioOpenDialogto xxx
66
+
GRANT EXECUTE ON %Library.RoutineMgr_StudioOpenDialogTO xxx
0 commit comments