Mercurial > vim
annotate runtime/plugin/tohtml.vim @ 2687:ef7fdb3c6927 v7.3.105
updated for version 7.3.105
Problem: Can't get the value of "b:changedtick" with getbufvar().
Solution: Make it work. (Christian Brabandt)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Sat, 22 Jan 2011 01:13:39 +0100 |
parents | 85c5a72551e2 |
children | 0877b8d6370e |
rev | line source |
---|---|
7 | 1 " Vim plugin for converting a syntax highlighted file to HTML. |
2321
1902913f2049
Improved version of 2html.vim.
Bram Moolenaar <bram@vim.org>
parents:
2304
diff
changeset
|
2 " Maintainer: Ben Fritz <fritzophrenic@gmail.com> |
2681 | 3 " Last Change: 2011 Jan 06 |
2304
a59e6ac5ed28
When the buffer is in diff mode, have :TOhtml create HTML to show the diff
Bram Moolenaar <bram@vim.org>
parents:
7
diff
changeset
|
4 " |
2321
1902913f2049
Improved version of 2html.vim.
Bram Moolenaar <bram@vim.org>
parents:
2304
diff
changeset
|
5 " The core of the code is in $VIMRUNTIME/autoload/tohtml.vim and |
1902913f2049
Improved version of 2html.vim.
Bram Moolenaar <bram@vim.org>
parents:
2304
diff
changeset
|
6 " $VIMRUNTIME/syntax/2html.vim |
2432
80229a724a11
Updated runtime files. :TOhtml improvements by Benjamin Fritz.
Bram Moolenaar <bram@vim.org>
parents:
2401
diff
changeset
|
7 " |
80229a724a11
Updated runtime files. :TOhtml improvements by Benjamin Fritz.
Bram Moolenaar <bram@vim.org>
parents:
2401
diff
changeset
|
8 " TODO: |
2681 | 9 " * Explicitly trigger IE8+ Standards Mode? |
10 " * Make it so deleted lines in a diff don't create side-scrolling | |
2546
0d3f0e3d289b
Updates for :TOhtml. (Benjamin Fritz)
Bram Moolenaar <bram@vim.org>
parents:
2508
diff
changeset
|
11 " * Restore open/closed folds and cursor position after processing each file |
0d3f0e3d289b
Updates for :TOhtml. (Benjamin Fritz)
Bram Moolenaar <bram@vim.org>
parents:
2508
diff
changeset
|
12 " with option not to restore for speed increase |
2681 | 13 " * Undercurl support via dotted bottom border? |
14 " * Add extra meta info (generation time, etc.)? | |
15 " * Tidy up so we can use strict doctype in even more situations | |
2546
0d3f0e3d289b
Updates for :TOhtml. (Benjamin Fritz)
Bram Moolenaar <bram@vim.org>
parents:
2508
diff
changeset
|
16 " * Implementation detail: add threshold for writing the lines to the html |
0d3f0e3d289b
Updates for :TOhtml. (Benjamin Fritz)
Bram Moolenaar <bram@vim.org>
parents:
2508
diff
changeset
|
17 " buffer before we're done (5000 or so lines should do it) |
2432
80229a724a11
Updated runtime files. :TOhtml improvements by Benjamin Fritz.
Bram Moolenaar <bram@vim.org>
parents:
2401
diff
changeset
|
18 " * TODO comments for code cleanup scattered throughout |
2642 | 19 " |
20 " | |
21 " Changelog: | |
2681 | 22 " 7.3_v8 (this version): Add html_expand_tabs option to allow leaving tab |
23 " characters in generated output (Andy Spencer). Escape | |
24 " text that looks like a modeline so Vim doesn't use | |
25 " anything in the converted HTML as a modeline. | |
26 " Bugfixes: Fix folding when a fold starts before the | |
27 " conversion range. Remove fold column when there are | |
28 " no folds. | |
29 " 7.3_v7 (840c3cadb842): see betas released on vim_dev below: | |
2642 | 30 " 7.3_v7b3: Fixed bug, convert Unicode to UTF-8 all the way. |
31 " 7.3_v7b2: Remove automatic detection of encodings that are not | |
32 " supported by all major browsers according to | |
33 " http://wiki.whatwg.org/wiki/Web_Encodings and convert | |
34 " to UTF-8 for all Unicode encodings. Make HTML | |
35 " encoding to Vim encoding detection be | |
36 " case-insensitive for built-in pairs. | |
37 " 7.3_v7b1: Remove use of setwinvar() function which cannot be | |
38 " called in restricted mode (Andy Spencer). Use | |
39 " 'fencoding' instead of 'encoding' to determine by | |
40 " charset, and make sure the 'fenc' of the generated | |
41 " file matches its indicated charset. Add charsets for | |
42 " all of Vim's natively supported encodings. | |
43 " 7.3_v6 (0d3f0e3d289b): Really fix bug with 'nowrapscan', 'magic' and other | |
44 " user settings interfering with diff mode generation, | |
45 " trailing whitespace (e.g. line number column) when | |
46 " using html_no_pre, and bugs when using | |
47 " html_hover_unfold. | |
48 " 7.3_v5 ( unreleased ): Fix bug with 'nowrapscan' and also with out-of-sync | |
49 " folds in diff mode when first line was folded. | |
50 " 7.3_v4 (7e008c174cc3): Bugfixes, especially for xhtml markup, and diff mode. | |
51 " 7.3_v3 (a29075150aee): Refactor option handling and make html_use_css | |
52 " default to true when not set to anything. Use strict | |
53 " doctypes where possible. Rename use_xhtml option to | |
54 " html_use_xhtml for consistency. Use .xhtml extension | |
55 " when using this option. Add meta tag for settings. | |
56 " 7.3_v2 (80229a724a11): Fix syntax highlighting in diff mode to use both the | |
57 " diff colors and the normal syntax colors | |
58 " 7.3_v1 (e7751177126b): Add conceal support and meta tags in output | |
59 " Pre-v1 baseline: Mercurial changeset 3c9324c0800e | |
7 | 60 |
2401
e7751177126b
Add the synconcealed() function and use it for :TOhtml. (Benjamin Fritz)
Bram Moolenaar <bram@vim.org>
parents:
2334
diff
changeset
|
61 if exists('g:loaded_2html_plugin') |
e7751177126b
Add the synconcealed() function and use it for :TOhtml. (Benjamin Fritz)
Bram Moolenaar <bram@vim.org>
parents:
2334
diff
changeset
|
62 finish |
e7751177126b
Add the synconcealed() function and use it for :TOhtml. (Benjamin Fritz)
Bram Moolenaar <bram@vim.org>
parents:
2334
diff
changeset
|
63 endif |
2681 | 64 let g:loaded_2html_plugin = 'vim7.3_v8' |
2401
e7751177126b
Add the synconcealed() function and use it for :TOhtml. (Benjamin Fritz)
Bram Moolenaar <bram@vim.org>
parents:
2334
diff
changeset
|
65 |
2304
a59e6ac5ed28
When the buffer is in diff mode, have :TOhtml create HTML to show the diff
Bram Moolenaar <bram@vim.org>
parents:
7
diff
changeset
|
66 " Define the :TOhtml command when: |
a59e6ac5ed28
When the buffer is in diff mode, have :TOhtml create HTML to show the diff
Bram Moolenaar <bram@vim.org>
parents:
7
diff
changeset
|
67 " - 'compatible' is not set |
a59e6ac5ed28
When the buffer is in diff mode, have :TOhtml create HTML to show the diff
Bram Moolenaar <bram@vim.org>
parents:
7
diff
changeset
|
68 " - this plugin was not already loaded |
a59e6ac5ed28
When the buffer is in diff mode, have :TOhtml create HTML to show the diff
Bram Moolenaar <bram@vim.org>
parents:
7
diff
changeset
|
69 " - user commands are available. |
a59e6ac5ed28
When the buffer is in diff mode, have :TOhtml create HTML to show the diff
Bram Moolenaar <bram@vim.org>
parents:
7
diff
changeset
|
70 if !&cp && !exists(":TOhtml") && has("user_commands") |
a59e6ac5ed28
When the buffer is in diff mode, have :TOhtml create HTML to show the diff
Bram Moolenaar <bram@vim.org>
parents:
7
diff
changeset
|
71 command -range=% TOhtml :call tohtml#Convert2HTML(<line1>, <line2>) |
7 | 72 endif |
2321
1902913f2049
Improved version of 2html.vim.
Bram Moolenaar <bram@vim.org>
parents:
2304
diff
changeset
|
73 |
1902913f2049
Improved version of 2html.vim.
Bram Moolenaar <bram@vim.org>
parents:
2304
diff
changeset
|
74 " Make sure any patches will probably use consistent indent |
2334
3c9324c0800e
Improved :TOhtml. (Benjamin Fritz)
Bram Moolenaar <bram@vim.org>
parents:
2321
diff
changeset
|
75 " vim: ts=8 sw=2 sts=2 noet |