Allow copying log output in the Debugger "Watch" pane #64626
Labels
debug
Debug viewlet, configurations, breakpoints, adapter issues
*duplicate
Issue identified as a duplicate of another issue(s)
feature-request
Request for new features or functionality
In the Watch pane in the Debugger, it is not possible to select the text, which is consistent with the rest of the debugger user interface. This is expected, however this means that the only way to copy output is to expand all the way down to the primitive values. Therefore, you can't even copy an entire list/array. It would be useful to have something like "Copy log output" in the context menu that would allow directly copying the result of logging an expression. Ie, in Python, performing this action on this tuple:
Would add
(628, 47)
to the clipboard, which is the result of callingprint((628,47))
.The text was updated successfully, but these errors were encountered: