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
* Add support for justMyCode where ignored files are stepInto-ed.
Small refactor of log point evaluation code.
* Changelog and Readme.
* Renamed justMyCode to skipFiles same as javascript debugger.
* Add support for pause and stepping with the same command that started the skipping process.
* Extract matching function and tests.
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
@@ -76,6 +76,7 @@ More general information on debugging with VS Code can be found on https://code.
76
76
-`pathMappings`: A list of server paths mapping to the local source paths on your machine, see "Remote Host Debugging" below
77
77
-`log`: Whether to log all communication between VS Code and the adapter to the debug console. See _Troubleshooting_ further down.
78
78
-`ignore`: An optional array of glob patterns that errors should be ignored from (for example `**/vendor/**/*.php`)
79
+
-`skipFiles`: An array of glob patterns, to skip when debugging. Star patterns and negations are allowed, for example, `**/vendor/**` or `!**/vendor/my-module/**`.
79
80
-`maxConnections`: Accept only this number of parallel debugging sessions. Additional connections will be dropped and their execution will continue without debugging.
80
81
-`proxy`: DBGp Proxy settings
81
82
-`enable`: To enable proxy registration set to `true` (default is `false).
Copy file name to clipboardExpand all lines: package.json
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -270,6 +270,14 @@
270
270
"**/vendor/**/*.php"
271
271
]
272
272
},
273
+
"skipFiles": {
274
+
"type": "array",
275
+
"items": "string",
276
+
"description": "An array of glob patterns, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/vendor/**\", \"!**/vendor/my-module/**\"]`",
277
+
"default": [
278
+
"**/vendor/**"
279
+
]
280
+
},
273
281
"log": {
274
282
"type": "boolean",
275
283
"description": "If true, will log all communication between VS Code and the adapter"
0 commit comments