From 21e1dcda6308db3e3220c4955bac640c8ddcb35c Mon Sep 17 00:00:00 2001 From: gentoo90 Date: Sun, 17 Dec 2017 10:04:58 +0200 Subject: [PATCH] Fix "request" value of "Attach to PID" in config --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 3c333f0..3e75635 100644 --- a/package.json +++ b/package.json @@ -341,7 +341,7 @@ "description": "Attaches to a running program pid using gdb", "body": { "type": "gdb", - "request": "launch", + "request": "attach", "name": "${2:Attach to PID}", "target": "${1:[PID]}", "cwd": "^\"\\${workspaceRoot}\"" @@ -661,7 +661,7 @@ "description": "Attaches to a running program pid using lldb-mi", "body": { "type": "lldb-mi", - "request": "launch", + "request": "attach", "name": "${2:Attach to PID}", "target": "${1:[PID]}", "cwd": "^\"\\${workspaceRoot}\"" @@ -868,7 +868,7 @@ "description": "Attaches to a running program pid using mago-mi", "body": { "type": "mago-mi", - "request": "launch", + "request": "attach", "name": "${2:Attach to PID}", "target": "${1:[PID]}", "cwd": "^\"\\${workspaceRoot}\""