Export File Syntax Highlighting to HTML Using Vim

exportsyntax highlightingvim

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?

Best Answer

Try this:

for i in *.ext; do vim -c TOhtml -c wqa $i ; done
Related Question