Skip to content

Commit 90ddb8a

Browse files
committed
0.11.0
1 parent 9df0fec commit 90ddb8a

File tree

1 file changed

+40
-10
lines changed

1 file changed

+40
-10
lines changed

package.json

Lines changed: 40 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"debug",
1010
"rr"
1111
],
12-
"version": "0.9.1",
12+
"version": "0.11.0",
1313
"engines": {
1414
"vscode": "^1.74.0"
1515
},
@@ -289,10 +289,16 @@
289289
"substitute-path": {
290290
"type": "object",
291291
"description": "How to substitute paths so that GDB can recognize where the source files are. If target file system matches identically, you don't have to substitute",
292-
"default": { "local": null, "remote": null }
292+
"default": {
293+
"local": null,
294+
"remote": null
295+
}
293296
}
294297
},
295-
"required": [ "address", "substitute-path" ]
298+
"required": [
299+
"address",
300+
"substitute-path"
301+
]
296302
}
297303
}
298304
},
@@ -368,10 +374,16 @@
368374
"substitute-path": {
369375
"type": "object",
370376
"description": "How to substitute paths so that GDB can recognize where the source files are. If target file system matches identically, you don't have to substitute as GDB will find the source files on your local machine.",
371-
"default": { "local": null, "remote": null }
377+
"default": {
378+
"local": null,
379+
"remote": null
380+
}
372381
}
373382
},
374-
"required": [ "address", "substitute-path" ]
383+
"required": [
384+
"address",
385+
"substitute-path"
386+
]
375387
}
376388
}
377389
}
@@ -588,10 +600,16 @@
588600
"substitute-path": {
589601
"type": "object",
590602
"description": "How to substitute paths so that GDB can recognize where the source files are. If target file system matches identically, you don't have to substitute",
591-
"default": { "local": null, "remote": null }
603+
"default": {
604+
"local": null,
605+
"remote": null
606+
}
592607
}
593608
},
594-
"required": [ "address", "substitute-path" ]
609+
"required": [
610+
"address",
611+
"substitute-path"
612+
]
595613
}
596614
}
597615
}
@@ -603,7 +621,11 @@
603621
"name": "Launch replay session",
604622
"trace": "Off",
605623
"cwd": "${workspaceFolder}",
606-
"setupCommands": ["set sysroot /", "set debuginfod enabled off", "set auto-load safe-path /"]
624+
"setupCommands": [
625+
"set sysroot /",
626+
"set debuginfod enabled off",
627+
"set auto-load safe-path /"
628+
]
607629
}
608630
],
609631
"configurationSnippets": [
@@ -619,7 +641,11 @@
619641
"trace": "${3:Off}",
620642
"gdbPath": "${4:gdb}",
621643
"rrPath": "rr",
622-
"setupCommands": ["set sysroot /", "set debuginfod enabled off", "set auto-load safe-path /"]
644+
"setupCommands": [
645+
"set sysroot /",
646+
"set debuginfod enabled off",
647+
"set auto-load safe-path /"
648+
]
623649
}
624650
},
625651
{
@@ -634,7 +660,11 @@
634660
"trace": "${3:Off}",
635661
"gdbPath": "${4:gdb}",
636662
"rrPath": "rr",
637-
"setupCommands": ["set sysroot /", "set debuginfod enabled off", "set auto-load safe-path /"],
663+
"setupCommands": [
664+
"set sysroot /",
665+
"set debuginfod enabled off",
666+
"set auto-load safe-path /"
667+
],
638668
"remoteTargetConfig": {
639669
"address": null,
640670
"substitute-path": {

0 commit comments

Comments
 (0)