Skip to content

Commit e8e80cc

Browse files
authored
Update PipeTransport.md
1 parent 13375a7 commit e8e80cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Documentation/Debugger/gdb/PipeTransport.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Pipe Transport allows communication through a pipe program to a remote shell. An
33

44
## How-To
55
We have added `"pipeTransport"` as an option within the `launch.json` file. The structure looks as follows:
6-
```
6+
```json
77
"pipeTransport": {
88
"pipeCwd": "/usr/bin",
99
"pipeProgram": "/usr/bin/ssh",
@@ -18,7 +18,7 @@ We have added `"pipeTransport"` as an option within the `launch.json` file. The
1818
The `pipeArgs` can be any set of arguments necessary to setup and authenticate the pipe connection. In the example, a password is used but you can also use an ssh key.
1919

2020
You may also need to add a `sourceFileMap` to map the path of where the code exists on the remote shell to where it is locally:
21-
```
21+
```json
2222
"sourceFileMap": {
2323
// "remote": "local"
2424
"/home/user/src": "/src/projectA/src"

0 commit comments

Comments
 (0)