diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-18 14:07:22 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-18 14:07:22 +0200 |
commit | 7c86f4cca33e9b60cdb5dbd25d5137e0a04795ff (patch) | |
tree | a0ff8abf5165511480b0f6b8b58aae2fd7e4d22d /runtime/syntax | |
parent | 85363abfb1595e6dae96475617f4cebd798d1a9b (diff) | |
download | vim-git-7c86f4cca33e9b60cdb5dbd25d5137e0a04795ff.tar.gz |
Improved :TOhtml. (Benjamin Fritz)
Diffstat (limited to 'runtime/syntax')
-rw-r--r-- | runtime/syntax/2html.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/syntax/2html.vim b/runtime/syntax/2html.vim index ab1c807f5..d57324f13 100644 --- a/runtime/syntax/2html.vim +++ b/runtime/syntax/2html.vim @@ -1,6 +1,6 @@ " Vim syntax support file " Maintainer: Ben Fritz <fritzophrenic@gmail.com> -" Last Change: 2010 July 15 +" Last Change: 2010 July 16 " " Additional contributors: " @@ -990,7 +990,7 @@ while !empty(s:idlist) endif else execute '%s+<span class="' . s:id_name . '">\([^<]*\)</span>+\1+ge' - if exists("s:html_use_css") + if exists("g:html_use_css") 1;/<style type="text/+1 endif endif @@ -1088,4 +1088,4 @@ let &cpo = s:cpo_sav unlet! s:cpo_sav " Make sure any patches will probably use consistent indent -" vim: noet sw=2 sts=2 +" vim: ts=8 sw=2 sts=2 noet |