Jeri Raye wrote:
> Hi,
>
> Are there character based hex2bin and bin2hex functions in vim?
> Or are there scripts known that perform that functions?
>   
Are you aware of xxd which comes with vim?

vim -b somebinaryfile
:%!xxd
:set ft=xxd

This'll handle reading binary files.  To write them, use

:%!xxd -r

Regards,
Chip Campbell


--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---

Reply via email to