Recently I had to review some very large registry files (.reg).
Trouble was when the file was large, VIM somehow displays also the control characters.
This made the file difficult to read.
The solution is to delete all the control characters with
:%s/[[:cntrl:]]//g
and voila:
Technorati tags: vim