You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Add skipEntryPaths to immediately detach a debug session depending on entry path (#911)
* feat: Add skipEntryPaths to immediately detach a debug session depending on entry file
* Document skipEntryPaths.
* Handle invalid init packet.
* Test case for skip entry paths and fix for old max conn test.
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,6 +78,7 @@ More general information on debugging with VS Code can be found on https://code.
78
78
-`ignore`: An optional array of glob patterns that errors should be ignored from (for example `**/vendor/**/*.php`)
79
79
-`ignoreExceptions`: An optional array of exception class names that should be ignored (for example `BaseException`, `\NS1\Exception`, `\*\Exception` or `\**\Exception*`)
80
80
-`skipFiles`: An array of glob patterns, to skip when debugging. Star patterns and negations are allowed, for example, `**/vendor/**` or `!**/vendor/my-module/**`.
81
+
-`skipEntryPaths`: An array of glob patterns, to immediately detach from and ignore for debugging if the entry script matches (example `**/ajax.php`).
81
82
-`maxConnections`: Accept only this number of parallel debugging sessions. Additional connections will be dropped and their execution will continue without debugging.
82
83
-`proxy`: DBGp Proxy settings
83
84
-`enable`: To enable proxy registration set to `true` (default is `false).
0 commit comments