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
Copy file name to clipboardExpand all lines: package.json
+22-1Lines changed: 22 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
"native",
10
10
"debug"
11
11
],
12
-
"version": "0.25.0",
12
+
"version": "0.24.0",
13
13
"publisher": "webfreak",
14
14
"icon": "images/icon.png",
15
15
"engines": {
@@ -259,6 +259,13 @@
259
259
"description": "Additional arguments to pass to GDB",
260
260
"default": []
261
261
},
262
+
"pathSubstitutions": {
263
+
"type": "object",
264
+
"description": "Help GDB find your source using path substitutions (GDB `substitute-path` variable",
265
+
"default": {
266
+
"<fromPath>": "<toPath>"
267
+
}
268
+
},
262
269
"cwd": {
263
270
"type": "string",
264
271
"description": "Path of project",
@@ -522,6 +529,13 @@
522
529
"description": "Additional arguments to pass to LLDB",
523
530
"default": []
524
531
},
532
+
"pathSubstitutions": {
533
+
"type": "object",
534
+
"description": "Help LLDB find your source using path substitutions (LLDB `target.source-map` variable",
535
+
"default": {
536
+
"<fromPath>": "<toPath>"
537
+
}
538
+
},
525
539
"valuesFormatting": {
526
540
"type": "string",
527
541
"description": "Set the way of showing variable values. 'disabled' - show value as is, 'parseText' - parse debuggers output text into structure, 'prettyPrinters' - enable debuggers custom pretty-printers if there are any",
@@ -662,6 +676,13 @@
662
676
"description": "Additional arguments to pass to LLDB",
663
677
"default": []
664
678
},
679
+
"pathSubstitutions": {
680
+
"type": "object",
681
+
"description": "Help LLDB find your source using path substitutions (LLDB `target.source-map` variable",
0 commit comments