Transform Text to Hex
:%!xxd
:enters command-line mode%matches the entire file as a range!filters that range through an external commandxxdis that external shell command
Do Hex Edits
Do hex edits
Transform Hex to Text
:%!xxd -r
:%!xxd
: enters command-line mode% matches the entire file as a range! filters that range through an external commandxxd is that external shell commandDo hex edits
:%!xxd -r