Sublime Plugin: displays hex values like $F7 as integer in the status bar
This plugin for Sublime Text shows the hex value (typically used e.g. in 8bit assembly language) as integer in the status bar.
2018-10-12: Additional display of binary
$F3 = #243 | %11110011
$0f = #15 | %1111
To make this work the word separators in Sublime Text need to be adjusted
In your settings, change
"word_separators": "./\\()\"'-:,.;<>~!@#$%^&*|+=[]{}`~?"
to
"word_separators": "./\\()\"'-:,.;<>~!@#%^&*|+=[]{}`~?"
Clone this repository in to the Sublime Text “Packages” directory, which is located where ever the
“Preferences” -> “Browse Packages” option in Sublime takes you.
Based on hex2int by unknownuser888
https://github.com/unknownuser88/hex2int