-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
No way to copy full value from debugger console (repl) #187784
Comments
Is this js-debug or in core @connor4312? |
This would be in core. I think the copy is just the default thing we get with the tree view, but if not it should still re-evaluate the expression in the @zardoy btw, for JS you can run |
Thanks! I didn't know it. Is there a full list of command line APIs like |
I think we actually need a new DAP method to do this completely. If an element is in the console as a result of the user evaluating an expression, we can re-evaluate it (as in the PR I just made.) However, if an expression is just printed to the console otherwise (e.g. with console.log) we have no way to request the DA return a |
For #187784. Needs DAP methods for a complete solution.
For #187784. Needs DAP methods for a complete solution.
Does this issue occur when all extensions are disabled?: Yes
It seems I was wrong in #187776 and the only way to copy values for now is clicking copy value from Variables view. Clicking
Copy
in debug console results in copying truncated version of big object or array. Behavior should be the same as in variables view.The text was updated successfully, but these errors were encountered: