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: Extension/package.json
+25Lines changed: 25 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -765,6 +765,31 @@
765
765
"default": {}
766
766
}
767
767
}
768
+
},
769
+
"setupCommands": {
770
+
"type": "array",
771
+
"description": "One or more GDB/LLDB commands to execute in order to setup the underlying debugger. Example: \"setupCommands\": [ { \"text\": \"-enable-pretty-printing\", \"description\": \"Enable GDB pretty printing\", \"ignoreFailures\": true }].",
772
+
"items": {
773
+
"type": "object",
774
+
"properties": {
775
+
"text": {
776
+
"type": "string",
777
+
"description": "The debugger command to execute.",
778
+
"default": ""
779
+
},
780
+
"description": {
781
+
"type": "string",
782
+
"description": "Optional description for the command.",
783
+
"default": ""
784
+
},
785
+
"ignoreFailures": {
786
+
"type": "boolean",
787
+
"description": "If true, failures from the command should be ignored. Default value is false.",
0 commit comments