diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-07-09 15:44:17 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-07-09 15:44:17 +0200 |
commit | dd007ed5853507f2071c3a152645088abf3c910b (patch) | |
tree | 52681c85f6f0c36a0f1e8332ea19d2fa675c967e /runtime/plugin | |
parent | 4ca8d5fefd047aad898c7a09c619cd69314741f5 (diff) | |
download | vim-git-dd007ed5853507f2071c3a152645088abf3c910b.tar.gz |
Updated runtime files. Fix NL translations.
Diffstat (limited to 'runtime/plugin')
-rw-r--r-- | runtime/plugin/tohtml.vim | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/runtime/plugin/tohtml.vim b/runtime/plugin/tohtml.vim index c7fa8caae..eb47b1a7c 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 Jun 26 +" Last Change: 2013 Jul 08 " " The core of the code is in $VIMRUNTIME/autoload/tohtml.vim and " $VIMRUNTIME/syntax/2html.vim @@ -67,12 +67,15 @@ if exists('g:loaded_2html_plugin') finish endif -let g:loaded_2html_plugin = 'vim7.3_v14' +let g:loaded_2html_plugin = 'vim7.4_v1' " " Changelog: {{{ +" 7.4_v1 (this version): Fix modeline mangling for new "Vim:" format, and +" also for version-specific modelines like "vim>703:". " -" 7.3_v14 (this version): Allow suppressing line number anchors using +" 7.3 updates: {{{ +" 7.3_v14 (ad6996a23e3e): Allow suppressing line number anchors using " g:html_line_ids=0. Allow customizing " important IDs (like line IDs and fold IDs) using " g:html_id_expr evalutated when the buffer conversion @@ -162,6 +165,7 @@ let g:loaded_2html_plugin = 'vim7.3_v14' " 7.3_v1 (e7751177126b): Add conceal support and meta tags in output " Pre-v1 baseline: Mercurial changeset 3c9324c0800e "}}} +"}}} " Define the :TOhtml command when: " - 'compatible' is not set |