Skip to content

Commit a89d294

Browse files
smuufzobo
andauthored
docs: Add breakpoint_include_return_value to known Xdebug config settings. (#990)
Co-authored-by: Damjan Cvetko <[email protected]>
1 parent 59ce651 commit a89d294

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ More general information on debugging with VS Code can be found on https://code.
8888
- `max_data`: max amount of variable data to initially retrieve.
8989
- `max_depth`: maximum depth that the debugger engine may return when sending arrays, hashes or object structures to the IDE (there should be no need to change this as depth is retrieved incrementally, large value can cause IDE to hang).
9090
- `show_hidden`: This feature can get set by the IDE if it wants to have more detailed internal information on properties (eg. private members of classes, etc.) Zero means that hidden members are not shown to the IDE.
91+
- `breakpoint_include_return_value`: Determines whether to enable an additional "return from function" debugging step, allowing inspection of the return value when a function call returns.
9192
- `xdebugCloudToken`: Instead of listening locally, open a connection and register with Xdebug Cloud and accept debugging sessions on that connection.
9293
- `stream`: Allows to influence DBGp streams. Xdebug only supports `stdout` see [DBGp stdout](https://xdebug.org/docs/dbgp#stdout-stderr)
9394
- `stdout`: Redirect stdout stream: 0 (disable), 1 (copy), 2 (redirect)

package.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,13 @@
350350
1
351351
],
352352
"description": "This feature can get set by the IDE if it wants to have more detailed internal information on properties (eg. private members of classes, etc.) Zero means that hidden members are not shown to the IDE"
353+
},
354+
"breakpoint_include_return_value": {
355+
"enum": [
356+
0,
357+
1
358+
],
359+
"description": "Determines whether to enable an additional \"return from function\" debugging step, allowing inspection of the return value when a function call returns."
353360
}
354361
},
355362
"description": "Overrides for Xdebug remote debugging settings. See https://xdebug.org/docs-dbgp.php#feature-names",

0 commit comments

Comments
 (0)