Skip to content

Commit 9b97ee8

Browse files
authored
Merge pull request #149 from Yanpas/values_fmt
add valuesFormatting by default
2 parents 628492b + 67e0afa commit 9b97ee8

File tree

1 file changed

+31
-16
lines changed

1 file changed

+31
-16
lines changed

package.json

Lines changed: 31 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,8 @@
334334
"type": "gdb",
335335
"request": "launch",
336336
"target": "./bin/executable",
337-
"cwd": "${workspaceRoot}"
337+
"cwd": "${workspaceRoot}",
338+
"valuesFormatting": "parseText"
338339
}
339340
],
340341
"configurationSnippets": [
@@ -346,7 +347,8 @@
346347
"request": "launch",
347348
"name": "${2:Launch Program}",
348349
"target": "${1:./bin/executable}",
349-
"cwd": "^\"\\${workspaceRoot}\""
350+
"cwd": "^\"\\${workspaceRoot}\"",
351+
"valuesFormatting": "parseText"
350352
}
351353
},
352354
{
@@ -357,7 +359,8 @@
357359
"request": "attach",
358360
"name": "${2:Attach to PID}",
359361
"target": "${1:[PID]}",
360-
"cwd": "^\"\\${workspaceRoot}\""
362+
"cwd": "^\"\\${workspaceRoot}\"",
363+
"valuesFormatting": "parseText"
361364
}
362365
},
363366
{
@@ -370,7 +373,8 @@
370373
"executable": "${1:./bin/executable}",
371374
"target": ":${2:2345}",
372375
"remote": true,
373-
"cwd": "^\"\\${workspaceRoot}\""
376+
"cwd": "^\"\\${workspaceRoot}\"",
377+
"valuesFormatting": "parseText"
374378
}
375379
},
376380
{
@@ -387,7 +391,8 @@
387391
"cwd": "${3:/home/remote_user/project/}",
388392
"keyfile": "${4:/home/my_user/.ssh/id_rsa}",
389393
"user": "${5:remote_user}"
390-
}
394+
},
395+
"valuesFormatting": "parseText"
391396
}
392397
},
393398
{
@@ -407,7 +412,8 @@
407412
"forwardX11": true,
408413
"x11host": "localhost",
409414
"x11port": 6000
410-
}
415+
},
416+
"valuesFormatting": "parseText"
411417
}
412418
},
413419
{
@@ -426,7 +432,8 @@
426432
"attach 1",
427433
"load ${1:./bin/executable.elf}"
428434
]
429-
}
435+
},
436+
"valuesFormatting": "parseText"
430437
}
431438
]
432439
},
@@ -663,7 +670,8 @@
663670
"type": "lldb-mi",
664671
"request": "launch",
665672
"target": "./bin/executable",
666-
"cwd": "${workspaceRoot}"
673+
"cwd": "${workspaceRoot}",
674+
"valuesFormatting": "parseText"
667675
}
668676
],
669677
"configurationSnippets": [
@@ -675,7 +683,8 @@
675683
"request": "launch",
676684
"name": "${2:Launch Program}",
677685
"target": "${1:./bin/executable}",
678-
"cwd": "^\"\\${workspaceRoot}\""
686+
"cwd": "^\"\\${workspaceRoot}\"",
687+
"valuesFormatting": "parseText"
679688
}
680689
},
681690
{
@@ -686,7 +695,8 @@
686695
"request": "attach",
687696
"name": "${2:Attach to PID}",
688697
"target": "${1:[PID]}",
689-
"cwd": "^\"\\${workspaceRoot}\""
698+
"cwd": "^\"\\${workspaceRoot}\"",
699+
"valuesFormatting": "parseText"
690700
}
691701
},
692702
{
@@ -703,7 +713,8 @@
703713
"cwd": "${3:/home/remote_user/project/}",
704714
"keyfile": "${4:/home/my_user/.ssh/id_rsa}",
705715
"user": "${5:remote_user}"
706-
}
716+
},
717+
"valuesFormatting": "parseText"
707718
}
708719
},
709720
{
@@ -723,7 +734,8 @@
723734
"forwardX11": true,
724735
"x11host": "localhost",
725736
"x11port": 6000
726-
}
737+
},
738+
"valuesFormatting": "parseText"
727739
}
728740
}
729741
]
@@ -870,7 +882,8 @@
870882
"type": "mago-mi",
871883
"request": "launch",
872884
"target": "./bin/executable",
873-
"cwd": "${workspaceRoot}"
885+
"cwd": "${workspaceRoot}",
886+
"valuesFormatting": "parseText"
874887
}
875888
],
876889
"configurationSnippets": [
@@ -882,7 +895,8 @@
882895
"request": "launch",
883896
"name": "${2:Launch Program}",
884897
"target": "${1:./bin/executable}",
885-
"cwd": "^\"\\${workspaceRoot}\""
898+
"cwd": "^\"\\${workspaceRoot}\"",
899+
"valuesFormatting": "parseText"
886900
}
887901
},
888902
{
@@ -893,7 +907,8 @@
893907
"request": "attach",
894908
"name": "${2:Attach to PID}",
895909
"target": "${1:[PID]}",
896-
"cwd": "^\"\\${workspaceRoot}\""
910+
"cwd": "^\"\\${workspaceRoot}\"",
911+
"valuesFormatting": "parseText"
897912
}
898913
}
899914
]
@@ -917,4 +932,4 @@
917932
"@types/node": "^7.0.5",
918933
"@types/mocha": "^2.2.39"
919934
}
920-
}
935+
}

0 commit comments

Comments
 (0)