Skip to content
Open
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
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ In case of Escargot Debug it looks like this:
"program": "absolue/path/to/escargot",
"address": "localhost",
"localRoot": "${workspaceRoot}",
"wait_for_source_mode": "quickpicklist",
"debugLog": 0,
"args": [
"--start-debug-server",
Expand All @@ -129,6 +130,10 @@ These configuration options are required. Manifest:
absolute path to executable (e.g.:/path/to/escargot/folder/escargot)
- `address`: IP address on which the server listening. Default is `localhost`
- `localRoot`: The local source root directoy, most cases this is the `${workspaceRoot}`
- `wait_for_source_mode`: The type of processing input file(s)
- quickpicklist: Select files from a list (files of escargot-test folder), they are executed in the same order they are selected
- xy.txt: Files will be executed in the same order as they are in a custom txt file (filename can be anything)
- If this parameter isnt there, please add the filename you would like to run in the "args" section, and only that file will be executed

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this parameter is omitted, the engine executes the file in the args section.

- `debugLog`: The type of the debug log, you can choose from 0 to 4:
- 0: none
- 1: Error (show errors only)
Expand Down