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
This frequently occurs in rust when working with string data that is encoded in a byte slice ([u8]),
which is (correctly) displayed as a list of integers, not a string. I often find myself wanting to copy out this data e.g. to put it into some decoding tool. Even a 20 character 'string' already gets truncated, killing this usecase.
Thank you for all the work you put into this great extension, especially the rust / cargo support is miles ahead of every other debug adapter I tried.
The text was updated successfully, but these errors were encountered:
When copying a somewhat longer value (like 20 bytes) from the Debug Watch Window, the value is truncated with
[...]
.This issue was already reported downstream for rust here.
Microsoft explains the api to fix this here (comment).
Cpptools has resolved the same issue here.
This frequently occurs in rust when working with string data that is encoded in a byte slice (
[u8]
),which is (correctly) displayed as a list of integers, not a string. I often find myself wanting to copy out this data e.g. to put it into some decoding tool. Even a 20 character 'string' already gets truncated, killing this usecase.
Thank you for all the work you put into this great extension, especially the rust / cargo support is miles ahead of every other debug adapter I tried.
The text was updated successfully, but these errors were encountered: