diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-08-07 15:47:30 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-08-07 15:47:30 +0200 |
commit | bebca9daa4118737fc74590af6b04e4b23ae2c4d (patch) | |
tree | df1ef8444b30050917a1de9f9cd4de7f8cc38b80 /runtime/plugin | |
parent | 706e84b3ea8712835117a23cec407377730c9785 (diff) | |
download | vim-git-bebca9daa4118737fc74590af6b04e4b23ae2c4d.tar.gz |
Updates for :TOhtml. (Ben Fritz)
Diffstat (limited to 'runtime/plugin')
-rw-r--r-- | runtime/plugin/tohtml.vim | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/runtime/plugin/tohtml.vim b/runtime/plugin/tohtml.vim index df7289516..433242fe1 100644 --- a/runtime/plugin/tohtml.vim +++ b/runtime/plugin/tohtml.vim @@ -1,24 +1,22 @@ " Vim plugin for converting a syntax highlighted file to HTML. " Maintainer: Ben Fritz <fritzophrenic@gmail.com> -" Last Change: 2010 Aug 02 +" Last Change: 2010 Aug 07 " " The core of the code is in $VIMRUNTIME/autoload/tohtml.vim and " $VIMRUNTIME/syntax/2html.vim " " TODO: " * Bug: error thrown when nowrapscan is set -" * Diff mode with xhtml gives invalid markup -" * Diff mode does not determine encoding " * Line number column has one character too few on empty lines " without CSS. " * Add extra meta info (generation time, etc.) -" * Fix strict doctype for other options? +" * Tidy up so we can use strict doctype more? " * TODO comments for code cleanup scattered throughout if exists('g:loaded_2html_plugin') finish endif -let g:loaded_2html_plugin = 'vim7.3_v3' +let g:loaded_2html_plugin = 'vim7.3_v4' " Define the :TOhtml command when: " - 'compatible' is not set |