Matthias Ladkau ecfaf8048d feat: Adding initial parts for debug support | 4 years ago | |
---|---|---|
.. | ||
.vscode | 4 years ago | |
images | 4 years ago | |
src | 4 years ago | |
syntaxes | 4 years ago | |
.eslintrc.js | 4 years ago | |
.vscodeignore | 4 years ago | |
README.md | 4 years ago | |
language-configuration.json | 4 years ago | |
notes.txt | 4 years ago | |
package.json | 4 years ago | |
tsconfig.json | 4 years ago |
package.json
- manifest filesyntaxes/ecal.tmLanguage.json
- Text mate grammar filelanguage-configuration.json
- language configuration for VSCodeTo build the extention you need npm
installed.
VSIX file can be build with npm run package
The extention can be installed using a precompiled VSIX file which can be downloaded from here:
https://devt.de/krotik/ecal/releases
{
"version": "0.2.0",
"configurations": [
{
"type": "ecaldebug",
"request": "launch",
"name": "Debug ECAL script with ECAL Debug Server",
"serverURL": "localhost:43806",
"dir": "${workspaceFolder}",
"executeOnEntry": true,
"trace": false,
}
]
}
In VSCode the extention can be launched and debugged using the included launch configuration. Press F5 to start a VS Code instance with ECAL support extention form the development code.