From 51639ad3d0c499a64d076fb45a1d5cd64185ea73 Mon Sep 17 00:00:00 2001 From: Andre Weinand Date: Thu, 12 Mar 2020 19:12:43 +0100 Subject: [PATCH] DAP: add "clipboard" context value for "evaluate" request --- src/vs/workbench/contrib/debug/common/debugProtocol.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/vs/workbench/contrib/debug/common/debugProtocol.d.ts b/src/vs/workbench/contrib/debug/common/debugProtocol.d.ts index c0d9524fd95..051e962d9dc 100644 --- a/src/vs/workbench/contrib/debug/common/debugProtocol.d.ts +++ b/src/vs/workbench/contrib/debug/common/debugProtocol.d.ts @@ -1164,6 +1164,7 @@ declare module DebugProtocol { 'watch': evaluate is run in a watch. 'repl': evaluate is run from REPL console. 'hover': evaluate is run from a data hover. + 'clipboard': evaluate is run to generate the value that will be stored in the clipboard. etc. */ context?: string; @@ -1473,6 +1474,8 @@ declare module DebugProtocol { supportsCancelRequest?: boolean; /** The debug adapter supports the 'breakpointLocations' request. */ supportsBreakpointLocationsRequest?: boolean; + /** The debug adapter supports the 'clipboard' context value in the 'evaluate' request. */ + supportsClipboardContext?: boolean; } /** An ExceptionBreakpointsFilter is shown in the UI as an option for configuring how exceptions are dealt with. */ -- GitLab