From 1834e13c46b0969d0e5d8f9213fb3dfe48f2848b Mon Sep 17 00:00:00 2001 From: Pierson Lee Date: Fri, 8 Dec 2017 11:20:54 -0800 Subject: [PATCH] Update launch.md Fix description --- launch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launch.md b/launch.md index 8287cf31fe..87c3503cb8 100644 --- a/launch.md +++ b/launch.md @@ -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.)