File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -182,8 +182,8 @@ The `vscode://llvm-vs-code-extensions.lldb-dap/launch/config?config={launch-conf
182
182
URI accepts a [ URL-encoded] ( https://en.wikipedia.org/wiki/Percent-encoding )
183
183
JSON launch config.
184
184
185
- This is useful, e.g., to integrate with custom scripts which start debugging
186
- sessions. The URIs might be printed to the terminal, potentially using
185
+ This is useful for integration with custom scripts to start debugging
186
+ sessions. The URI might be printed to the terminal, potentially using
187
187
[ OSC-8 hyperlinks] ( https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda ) ,
188
188
or passed to ` vscode --open-url ` or ` xdg-open ` , although mileage may vary
189
189
depending on your specific debugging setup.
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export class LaunchUriHandler implements vscode.UriHandler {
9
9
if ( configJson === null ) {
10
10
throw new Error ( "Missing `config` URI parameter" ) ;
11
11
}
12
- // Build the debug config
12
+ // Build the debug config.
13
13
let debugConfig : vscode . DebugConfiguration = {
14
14
type : 'lldb-dap' ,
15
15
request : 'launch' ,
You can’t perform that action at this time.
0 commit comments