vscode-input-sequence icon indicating copy to clipboard operation
vscode-input-sequence copied to clipboard

start digit only accept [0-9a-F], should accept [0-9a-Z]

Open sirius0xff opened this issue 5 years ago • 0 comments

It seems rather pointless to support radix above 16 if it cannot start from digit >f.

============================================================== Also it would be pretty handy to guess radix based on the start digit:

if start in [0-9]: default_radix=10
if start in [a-F]: default_radix=16
if start in [g-Z]: default_radix=36

=================================================================

Another possible improvement is to allow skipping the step. e.g. accept e::17 as e:1:17

=================================================================

Thanks for the great extension.

sirius0xff avatar Jan 14 '20 17:01 sirius0xff