We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
e::17
e:1:17
Thanks for the great extension.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
=================================================================
Another possible improvement is to allow skipping the step. e.g. accept
e::17
ase:1:17
=================================================================
Thanks for the great extension.
The text was updated successfully, but these errors were encountered: