Export File Syntax Highlighting to HTML Using Vim
I wrote a vim syntax highlighting file for a custom file type that I am working and I want to be able to show off my syntax highlighting painlessly by converting my view of the page into an HTML document for others.
My current workflow is basically:
vim *.ext
and then:
:TOhtml
:wq
:n
ad nauseum
I'm sick of it, I've exported 3 files this way and I've had enough. How can I streamline this using some sort of script?
Try this:
for i in *.ext; do vim -c TOhtml -c wqa $i ; done
Create a recursive mapping:
:map <F2> :TOhtml<enter>:wq<enter>:n<enter><F2>
And then press <F2>
. All your files will be converted automatically.