You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While remote debugging I copied a long value from the watch area.
Pasting it resulted in a partial string with '...' at the end
To Reproduce
Start a debugging session
add an expression that has a long value to watch
Copy value
paste it somewhere in a text area
the pasted text appears is limited and ends with '...'
Additional context
Initially I've opened a ticket here microsoft/vscode#97444
I was told to open it here and mention:
VSCode sents the clipboard context when copying. Their extension should set the capability supportsClipboardContext and respect the clipboard context by evaluation the full thing.
The text was updated successfully, but these errors were encountered:
You can work around this by adding the following to your launch.json with setupCommands or running it in the debug console with -exec: set print elements 0.
The correct fix is to run set print elements 0 before evaluating the request when it is a clipboard context and then reset it back to the value of show print elements before we changed it to 0.
Type: Debugger
Describe the bug
While remote debugging I copied a long value from the watch area.
Pasting it resulted in a partial string with '...' at the end
To Reproduce
Additional context
Initially I've opened a ticket here microsoft/vscode#97444
I was told to open it here and mention:
The text was updated successfully, but these errors were encountered: