stef-levesque / vscode-hexdump

hexdump for Visual Studio Code
MIT License
138 stars 27 forks source link

Keyboard shortcut for hexdump.editvalue conflicts with built-in one #69

Closed PaperCube closed 4 years ago

PaperCube commented 4 years ago

Key combination Shift + Enter was originally the same effect as Enter, but after installing hexdump this combination is bound to hexdump.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.

iliazeus commented 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.

Marketplace link

stef-levesque commented 4 years ago

Fixed in version 1.8.1