Closed PaperCube closed 4 years ago
@PaperCube, I've resolved this issue in my fork: https://github.com/iliazeus/vscode-hexdump
I've changed the when
expression to be editorTextFocus && editorLangId == hexdump
, as per your suggestion.
Fixed in version 1.8.1
Key combination
Shift + Enter
was originally the same effect asEnter
, but after installing hexdump this combination is bound tohexdump.editvalue
globally, therefore in a normal text file this combination simply does nothing.Currently I'm working around by changing the when expression to
editorTextFocus && editorLangId == 'hexdump'
. I hope it can be made default as it's essential for those who can't release their left shift in time when typing fast.