My python code opens a subprocess which in turn calls vimdiff and :toHTML.
Snippet added below:
subprocess.check_call(
[
"vimdiff",
oldfileresultnameafterrename,
build_xml_path,
"-c",
":se nu | TOhtml | w! "+oldfileresultnameafterrename+".html | qa!"
]
In CentOS, it generates an HTML output and everything works as expected. Now I'm migrating to Ubuntu and the same command generates a HTML5 page.
Is there a way, I can generate a HTML page similar to the one generated in CentOS?
:versionVim command on both systems?