Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
sirius0xff opened this issue Jan 14, 2020 · 0 comments
Open

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

sirius0xff opened this issue Jan 14, 2020 · 0 comments

Comments

@sirius0xff
Copy link

sirius0xff commented Jan 14, 2020

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant