summaryrefslogtreecommitdiffstats
path: root/runtime/plugin/tohtml.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-06-26 13:28:14 +0200
committerBram Moolenaar <Bram@vim.org>2013-06-26 13:28:14 +0200
commit31c31679e22618fe03f634a356c15f8d631c5372 (patch)
treee67e22cbd019f0caba2876af2953f3a1fc72bf65 /runtime/plugin/tohtml.vim
parentb052fe0e2c428fa1168b45a8f425a15bf25d4706 (diff)
Updated runtime files. New version of TOhtml plugin.
Diffstat (limited to 'runtime/plugin/tohtml.vim')
-rw-r--r--runtime/plugin/tohtml.vim12
1 files changed, 9 insertions, 3 deletions
diff --git a/runtime/plugin/tohtml.vim b/runtime/plugin/tohtml.vim
index a18e2d167c..a56b95b8a6 100644
--- a/runtime/plugin/tohtml.vim
+++ b/runtime/plugin/tohtml.vim
@@ -1,6 +1,6 @@
" Vim plugin for converting a syntax highlighted file to HTML.
" Maintainer: Ben Fritz <fritzophrenic@gmail.com>
-" Last Change: 2013 May 31
+" Last Change: 2013 Jun 12
"
" The core of the code is in $VIMRUNTIME/autoload/tohtml.vim and
" $VIMRUNTIME/syntax/2html.vim
@@ -67,12 +67,18 @@
if exists('g:loaded_2html_plugin')
finish
endif
-let g:loaded_2html_plugin = 'vim7.3_v13'
+let g:loaded_2html_plugin = 'vim7.3_v14'
"
" Changelog: {{{
"
-" 7.3_v13 (this version): Keep foldmethod at manual in the generated file and
+" 7.3_v14 (this version): Allow suppressing empty <span> created for line
+" number anchors when line numbers are not included,
+" using g:html_empty_anchors=0. Allow customizing
+" important IDs (like line IDs and fold IDs) using
+" g:html_id_expr evalutated when the buffer conversion
+" is started.
+" 7.3_v13 (2eb30f341e8d): Keep foldmethod at manual in the generated file and
" insert modeline to set it to manual.
" Fix bug: diff mode with 2 unsaved buffers creates a
" duplicate of one buffer instead of including both.