To convert sources files into html by using vim type following in command line :
for one file:
vim -e +:TOhtml +w +qa file.c
or create .bat file for converting whole directory of source files:
for %%f in (%1\*.cs) do (vim -e +:TOhtml +w +qa "%%f")
more...
No comments:
Post a Comment