-
Notifications
You must be signed in to change notification settings - Fork 30.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Copying a long value from debug watch results in pasting partial value #97444
Comments
Please file this against the C++ extension and mention the following: |
@isidorn
|
@WardenGnaw yeah this is how we implemented it here
Maybe not the best when you do it on a top level wath expression. |
Hmm. In the C/C++ debugger, it defaults to displaying up to 200 characters. So the value we would get when stopped, would be the truncated 200 limited value. I was expecting when a user selects We would do so by noticing it was a ClipboardContext. Tell the debugger to have unlimited display when evaluating a variable, evaluate a variable, reset the display back to the default and return the full display in the response. |
@WardenGnaw you are correct, I have pushed de3e5a4 to tackle this. |
@isidorn Sorry for the delay, I tested this out and the expression of the evaluate request is what we expect, the variable to evaluate. Thanks you again! |
@WardenGnaw thanks for letting us know! |
For me it reproduced with C++
But it probably occurs in other languages as well, haven't verified that.
Steps to Reproduce:
Does this issue occur when all extensions are disabled?: Yes
The text was updated successfully, but these errors were encountered: