(Pronounced "hex convert")
Base conversion made easy in emacs
- Base conversion!
- Intelligent base inference
- Replace-at-point methods
- Simple representation of bases up to 36
0xc is avilable on Melpa. After installing with M-x package-install <RET> 0xc <RET>
,
all functions should be available.
0xc-convert
- Simple string-to-string base conversion. Accepts prefix options and allows interactive use.0xc-convert-point
- Replace the number at point with a converted representation.0xc-live-convert
- Open a new window and show various interpretations and conversions for a number as you type it.
A number literal's base can be roughly determined via heuristics, but you can use the following hints to ensure 0xc gets it right:
0x
and'h
are hexadecimal literals0b
and'b
are binary literals0t
is a ternary literal0d
and'd
are decimal literals0o
and'o
are octal literals
Alternatively, you can prefix a base-n number with n:
. 0xc will automatically remove any of these base hints when converting
More tests are next. If you feel like beating me to it, open a pull request.
GPLv3+