From 789e26ae60436fd73c930c5a333c1decdeedaa88 Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Sun, 8 Sep 2019 17:34:36 -0700 Subject: [PATCH] Add attach compound and align names (#7107) --- .vscode/launch.json | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 83491fdc4a..5d5800f24d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -207,18 +207,25 @@ ] }, { - "name": "Search and Renderer processes", + "name": "Debug Renderer and search processes", "configurations": [ "Launch azuredatastudio", "Attach to Search Process" ] }, { - "name": "Renderer and Extension Host processes", + "name": "Debug Renderer and Extension Host processes", "configurations": [ "Launch azuredatastudio", "Attach to Extension Host" ] + }, + { + "name": "Attach Renderer and Extension Host", + "configurations": [ + "Attach to azuredatastudio", + "Attach to Extension Host" + ] } ] -} \ No newline at end of file +}