Skip to content

Commit acf6dac

Browse files
committed
JSON now syntax colored
1 parent f081bd3 commit acf6dac

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

docs/Connect-to-InterSystems-IRIS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ To be able to use many of the plugin features, you first need to configure the c
1010

1111
* Find an 'objectscript.conn' section in workspace settings by following the menu sequence File > Preferences > Settings. Do not forget to set active to true. Set port to the web port of the instance you want to connect to. By default, this is 57772 for Caché/Ensemble and 52773 for InterSystems IRIS.
1212

13-
```JSON
13+
```json
1414
{
1515
"objectscript.conn": {
1616
"active": true,

docs/Debugging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ nav_order: 5
88

99
Example of `.vscode/launch.json` file:
1010

11-
```JSONC
11+
```json
1212
{
1313
// Use IntelliSense to learn about possible attributes.
1414
// Hover to view descriptions of existing attributes.

docs/Export-settings.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ There are a few settings that control how the code is exported to the local mach
1313
- `objectscript.export.addCategory` -- If `true` adds folders for particular file types under the folder defined in the `objectscript.export.folder` setting. Files of type `cls`, `int`, `mac` and `inc` are placed in a folder with same type. Any other file types are placed in the `oth` folder.
1414
You can define the structure as an object, where the property name is supplied as pattern (mask or RegExp) and the value as a folder. For example:
1515

16-
```JSON
17-
{
18-
"%*.cls": "_cls",
19-
"*.cls": "cls"
20-
}
21-
```
16+
```json
17+
{
18+
"%*.cls": "_cls",
19+
"*.cls": "cls"
20+
}
21+
```
2222

2323
This saves percent classes to the `_cls` folder, and any other classes to the `cls` folder.
2424

docs/Server-side-editing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ First, you should configure the connection to InterSystems as described [here](h
1414

1515
Add a file with extension `.code-workspace`, with content similar to this.
1616

17-
```JSON
17+
```json
1818
{
1919
"folders": [
2020
{
@@ -41,7 +41,7 @@ With the next start of VSCode, you see two folders in the root with the names de
4141

4242
Example with connection to different namespaces on the same server:
4343

44-
```JSON
44+
```json
4545
{
4646
"folders": [
4747
{

0 commit comments

Comments
 (0)