Skip to content

Commit

Permalink
Update launch.md
Browse files Browse the repository at this point in the history
Fix description
  • Loading branch information
pieandcakes committed Dec 8, 2017
1 parent 4d948fe commit 1834e13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion launch.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,4 +151,4 @@ _Note: core dump debuging is not supported with MinGw._
**type**: Indicates the underlying debugger being used. Must be `cppvsdbg` when using the Visual Studio Windows debugger, and `cppdbg` when using GDB or LLDB. This is automatically set to the correct value when the
launch.json file is created.

**sourceFileMap**: This allows mapping of the compile time paths for source to local source locations. It is an array of key/value pairs and will resolve the first string-matched path. (example: `"sourceFileMap": [ "/mnt/c": "c:\\" ]` will map any path returned by the debugger that begins with `/mnt/c` and convert it to `c:\\`)
**sourceFileMap**: This allows mapping of the compile time paths for source to local source locations. It is an object of key/value pairs and will resolve the first string-matched path. (example: `"sourceFileMap": { "/mnt/c": "c:\\" }` will map any path returned by the debugger that begins with `/mnt/c` and convert it to `c:\\`. You can have multiple mappings in the object but they will be handled in the order provided.)

0 comments on commit 1834e13

Please sign in to comment.