microsoft / vscode-hexeditor

VS Code Hex Editor
https://marketplace.visualstudio.com/items?itemName=ms-vscode.hexeditor
MIT License
525 stars 85 forks source link

Option to copy the hex values #433

Closed bitsybabe closed 1 year ago

bitsybabe commented 1 year ago

When I open a file that has the following displayed in the hex section:

F0 41 10 00 30 12 00 00 00 00

If I select and Ctrl-C/Copy it, then paste it into a text editor, the value that's pasted is this:

8EEQADASAAAAAA==

What I want is this:

"F0 41 10 00 30 12 00 00 00 00" (without the quotes)

It'd be super cool if I could paste the actual hex values that I just copied and not a translation of them. I think it'd have to be "Copy Special..." since the target app wouldn't necessarily have a "Paste Special... / As Hex".

lramos15 commented 1 year ago

Duplicate of #341