diff options
author | Rob Hoelz <rob@hoelz.ro> | 2013-09-17 17:37:59 +0200 |
---|---|---|
committer | Rob Hoelz <rob@hoelz.ro> | 2013-09-17 17:37:59 +0200 |
commit | 2686fb60f4a2930c38961f5c6211f2177258faf9 (patch) | |
tree | 3252dc94e1444812bf260b025535e86754d39606 /ftplugin/tt2html.vim | |
parent | 9d92f103757d629193e9ec2d4669eb1094b23669 (diff) | |
download | vim-polyglot-2686fb60f4a2930c38961f5c6211f2177258faf9.tar.gz vim-polyglot-2686fb60f4a2930c38961f5c6211f2177258faf9.zip |
Add Perl language files
Diffstat (limited to '')
-rw-r--r-- | ftplugin/tt2html.vim | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ftplugin/tt2html.vim b/ftplugin/tt2html.vim new file mode 100644 index 00000000..4ad02292 --- /dev/null +++ b/ftplugin/tt2html.vim @@ -0,0 +1,13 @@ +" Language: TT2 embedded with HTML +" Maintainer: vim-perl <vim-perl@googlegroups.com> +" Homepage: http://github.com/vim-perl/vim-perl +" Bugs/requests: http://github.com/vim-perl/vim-perl/issues +" Last Change: {{LAST_CHANGE}} + +" Only do this when not done yet for this buffer +if exists("b:did_ftplugin") + finish +endif + +" Just use the HTML plugin for now. +runtime! ftplugin/html.vim ftplugin/html_*.vim ftplugin/html/*.vim |