Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
681 changes: 681 additions & 0 deletions RPGLE-NOTEBOOK-PLAN.md

Large diffs are not rendered by default.

56 changes: 56 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 12 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,17 @@
}
}
},
{
"id": "vscode-db2i.rpgleRepl",
"title": "RPGLE REPL",
"properties": {
"vscode-db2i.rpgleRepl.library": {
"type": "string",
"markdownDescription": "Library containing RPGLE-REPL objects. Leave empty to disable RPG notebook cells. Install RPGLE-REPL from [rpgle-repl](https://github.com/tom-writes-code/rpgle-repl).",
"default": ""
}
}
},
{
"id": "vscode-db2i.schemaBrowser",
"title": "Schema Browser",
Expand Down Expand Up @@ -1660,7 +1671,7 @@
"command": "notebook.cell.execute",
"key": "ctrl+r",
"mac": "cmd+r",
"when": "editorLangId == sql && resourceExtname == .inb"
"when": "(editorLangId == sql || editorLangId == rpgle) && resourceExtname == .inb"
}
],
"colors": [
Expand Down
13 changes: 13 additions & 0 deletions rpgle-repl.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"folders": [
{
"path": "../rpgle-repl"
},
{
"path": "."
}
],
"settings": {
"iis.activeFolder": "rpgle-repl"
}
}
11 changes: 11 additions & 0 deletions src/contributes.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,17 @@
"default": true
}
}
},
{
"id": "vscode-db2i.rpgleRepl",
"title": "RPGLE REPL",
"properties": {
"vscode-db2i.rpgleRepl.library": {
"type": "string",
"markdownDescription": "Library containing RPGLE-REPL objects. Leave empty to disable RPG notebook cells. Install RPGLE-REPL from [rpgle-repl](https://github.com/tom-writes-code/rpgle-repl).",
"default": ""
}
}
}
],
"viewsContainers": {
Expand Down
Loading
Loading