-
Notifications
You must be signed in to change notification settings - Fork 115
Closed
Labels
feature requestIssues related to new features users wantIssues related to new features users want
Description
Hi, I like this extension, it's awesome. But sometimes the bytes in the file could not decode as some cjk encoding like gbk.
It would be nice to support this feature.
And I go through the code and find maybe I can add gbk support like utf-8 in media/editor/dataInspectorProperties.tsx.
vscode-hexeditor/media/editor/dataInspectorProperties.tsx
Lines 75 to 83 in 3bad0a5
| { | |
| label: "UTF-8", | |
| minBytes: 1, | |
| convert: dv => { | |
| const utf8 = new TextDecoder("utf-8").decode(dv.buffer); | |
| for (const char of utf8) return char; | |
| return utf8; | |
| }, | |
| }, |
Metadata
Metadata
Assignees
Labels
feature requestIssues related to new features users wantIssues related to new features users want