annotate runtime/ftplugin/tt2html.vim @ 17612:e259d11e2900 v8.1.1803

patch 8.1.1803: all builtin functions are global commit https://github.com/vim/vim/commit/ac92e25a33c37ec5becbfffeccda136c73b761ac Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 3 21:58:38 2019 +0200 patch 8.1.1803: all builtin functions are global Problem: All builtin functions are global. Solution: Add the method call operator ->. Implemented for a limited number of functions.
author Bram Moolenaar <Bram@vim.org>
date Sat, 03 Aug 2019 22:00:07 +0200
parents 42bf9264e64e
children d1fe80fb35e6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5239
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
1 " Language: TT2 embedded with HTML
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
2 " Maintainer: vim-perl <vim-perl@googlegroups.com>
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
3 " Homepage: http://github.com/vim-perl/vim-perl
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
4 " Bugs/requests: http://github.com/vim-perl/vim-perl/issues
5277
42bf9264e64e Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5239
diff changeset
5 " Last Change: 2013-07-21
5239
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
6
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
7 " Only do this when not done yet for this buffer
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
8 if exists("b:did_ftplugin")
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
9 finish
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
10 endif
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
11
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
12 " Just use the HTML plugin for now.
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
13 runtime! ftplugin/html.vim ftplugin/html_*.vim ftplugin/html/*.vim