diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-17 09:14:18 -0700 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-17 09:14:18 -0700 |
commit | 88bd82d6c91d0ccb777d8d35c3111c6b0cc8dcaa (patch) | |
tree | 3252dc94e1444812bf260b025535e86754d39606 /ftplugin/tt2html.vim | |
parent | 9d92f103757d629193e9ec2d4669eb1094b23669 (diff) | |
parent | 2686fb60f4a2930c38961f5c6211f2177258faf9 (diff) | |
download | vim-polyglot-88bd82d6c91d0ccb777d8d35c3111c6b0cc8dcaa.tar.gz vim-polyglot-88bd82d6c91d0ccb777d8d35c3111c6b0cc8dcaa.zip |
Merge pull request #10 from hoelzro/master
Add Perl language files
Diffstat (limited to 'ftplugin/tt2html.vim')
-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 |