Merge pull request #149 from Yanpas/values_fmt

add valuesFormatting by default
This commit is contained in:
Jan Jurzitza 2018-07-05 14:37:13 +02:00 committed by GitHub
commit 9b97ee8f39
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -334,7 +334,8 @@
"type": "gdb",
"request": "launch",
"target": "./bin/executable",
"cwd": "${workspaceRoot}"
"cwd": "${workspaceRoot}",
"valuesFormatting": "parseText"
}
],
"configurationSnippets": [
@ -346,7 +347,8 @@
"request": "launch",
"name": "${2:Launch Program}",
"target": "${1:./bin/executable}",
"cwd": "^\"\\${workspaceRoot}\""
"cwd": "^\"\\${workspaceRoot}\"",
"valuesFormatting": "parseText"
}
},
{
@ -357,7 +359,8 @@
"request": "attach",
"name": "${2:Attach to PID}",
"target": "${1:[PID]}",
"cwd": "^\"\\${workspaceRoot}\""
"cwd": "^\"\\${workspaceRoot}\"",
"valuesFormatting": "parseText"
}
},
{
@ -370,7 +373,8 @@
"executable": "${1:./bin/executable}",
"target": ":${2:2345}",
"remote": true,
"cwd": "^\"\\${workspaceRoot}\""
"cwd": "^\"\\${workspaceRoot}\"",
"valuesFormatting": "parseText"
}
},
{
@ -387,7 +391,8 @@
"cwd": "${3:/home/remote_user/project/}",
"keyfile": "${4:/home/my_user/.ssh/id_rsa}",
"user": "${5:remote_user}"
}
},
"valuesFormatting": "parseText"
}
},
{
@ -407,7 +412,8 @@
"forwardX11": true,
"x11host": "localhost",
"x11port": 6000
}
},
"valuesFormatting": "parseText"
}
},
{
@ -426,7 +432,8 @@
"attach 1",
"load ${1:./bin/executable.elf}"
]
}
},
"valuesFormatting": "parseText"
}
]
},
@ -663,7 +670,8 @@
"type": "lldb-mi",
"request": "launch",
"target": "./bin/executable",
"cwd": "${workspaceRoot}"
"cwd": "${workspaceRoot}",
"valuesFormatting": "parseText"
}
],
"configurationSnippets": [
@ -675,7 +683,8 @@
"request": "launch",
"name": "${2:Launch Program}",
"target": "${1:./bin/executable}",
"cwd": "^\"\\${workspaceRoot}\""
"cwd": "^\"\\${workspaceRoot}\"",
"valuesFormatting": "parseText"
}
},
{
@ -686,7 +695,8 @@
"request": "attach",
"name": "${2:Attach to PID}",
"target": "${1:[PID]}",
"cwd": "^\"\\${workspaceRoot}\""
"cwd": "^\"\\${workspaceRoot}\"",
"valuesFormatting": "parseText"
}
},
{
@ -703,7 +713,8 @@
"cwd": "${3:/home/remote_user/project/}",
"keyfile": "${4:/home/my_user/.ssh/id_rsa}",
"user": "${5:remote_user}"
}
},
"valuesFormatting": "parseText"
}
},
{
@ -723,7 +734,8 @@
"forwardX11": true,
"x11host": "localhost",
"x11port": 6000
}
},
"valuesFormatting": "parseText"
}
}
]
@ -870,7 +882,8 @@
"type": "mago-mi",
"request": "launch",
"target": "./bin/executable",
"cwd": "${workspaceRoot}"
"cwd": "${workspaceRoot}",
"valuesFormatting": "parseText"
}
],
"configurationSnippets": [
@ -882,7 +895,8 @@
"request": "launch",
"name": "${2:Launch Program}",
"target": "${1:./bin/executable}",
"cwd": "^\"\\${workspaceRoot}\""
"cwd": "^\"\\${workspaceRoot}\"",
"valuesFormatting": "parseText"
}
},
{
@ -893,7 +907,8 @@
"request": "attach",
"name": "${2:Attach to PID}",
"target": "${1:[PID]}",
"cwd": "^\"\\${workspaceRoot}\""
"cwd": "^\"\\${workspaceRoot}\"",
"valuesFormatting": "parseText"
}
}
]
@ -917,4 +932,4 @@
"@types/node": "^7.0.5",
"@types/mocha": "^2.2.39"
}
}
}