Skip to content

intersystems-community/vscode-objectscript

Folders and files

NameName
Last commit message
Last commit date

Latest commit

86bb545 · Oct 7, 2019
Aug 27, 2019
Aug 12, 2019
Oct 3, 2019
Feb 1, 2019
Oct 7, 2019
Sep 27, 2019
Jul 4, 2019
Jul 15, 2018
Aug 5, 2019
May 31, 2019
Feb 14, 2018
Dec 16, 2018
Aug 5, 2019
Aug 5, 2019
Oct 5, 2019
Dec 15, 2018
Oct 3, 2019
Feb 4, 2019
Feb 4, 2019
Oct 3, 2019
Oct 5, 2019
Feb 8, 2017
Jan 26, 2019
Aug 12, 2019
Jun 10, 2019

Repository files navigation

Known Vulnerabilities Gitter

vscode-objectscript

InterSystems ObjectScript language support for Visual Studio Code.

CaretDev provides commercial support services. Request a Quote.

Features

  • InterSystems ObjectScript code highlighting support. example
  • Debugging ObjectScript code
  • Intellisense support for commands, system functions, class members
  • Export existing sources to the working directory: press Cmd/Ctrl+Shift+P, type 'ObjectScript', press Enter.
  • Save and compile a class: press Ctrl+F7 (⌘+F7) or select "ObjectScript: Save and compile" from Cmd/Ctrl+Shift+P menu.
  • Server Explorer with possibility to export itemsServerExplorer
  • Edit directly on server

Installation

Install Visual Studio Code first.

Open VSCode. Go to extensions and search for "ObjectScript" like it is shown on the attached screenshot and install it. Or install from ObjectScript extension page on Visual Studio Marketplace installation

Configure connection

To be able to use many plugin features, you need to configure the connection to Caché server first. You can create or edit existing .vscode/settings.json file. So, your settings file may somethiing like this.

"objectscript.conn": {
  "active": true,
  "label": "LOCAL",
  "host": "127.0.0.1",
  "port": 52773,
  "username": "user",
  "password": "password",
  "ns": "USER",
  "https": false
}

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+,].

  • Find a 'objectscript', do not forget to set active to true port should follow to web port of instance (usually by default, 57772 for Caché/Ensemble, 52773 for IRIS) Settings UI
  • Change settings according to your Caché/IRIS instance
  • You will see related output in "Output" while switched to "ObjectScript" channel (right drop-down menu on top of the output window)

Notes

For Caché/IRIS instance with maximum security level, add '%Development' role for '/api/atelier/' web-application ( More )