diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-07-24 19:53:36 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-07-24 19:53:36 +0200 |
commit | e2db695d313174f6d6e6a79388a262e4e53d387e (patch) | |
tree | 2ff47e019a28756c665e0daa273388af53b81028 /runtime/ftplugin | |
parent | ff18df03c3b714caca4f76e50defcb29eb523e15 (diff) | |
download | vim-git-e2db695d313174f6d6e6a79388a262e4e53d387e.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/perl.vim | 2 | ||||
-rw-r--r-- | runtime/ftplugin/perl6.vim | 2 | ||||
-rw-r--r-- | runtime/ftplugin/tt2html.vim | 13 | ||||
-rw-r--r-- | runtime/ftplugin/xs.vim | 2 |
4 files changed, 16 insertions, 3 deletions
diff --git a/runtime/ftplugin/perl.vim b/runtime/ftplugin/perl.vim index 650835640..415010c96 100644 --- a/runtime/ftplugin/perl.vim +++ b/runtime/ftplugin/perl.vim @@ -3,7 +3,7 @@ " 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: 2013-05-11 +" Last Change: 2013 Jul 24 if exists("b:did_ftplugin") | finish | endif let b:did_ftplugin = 1 diff --git a/runtime/ftplugin/perl6.vim b/runtime/ftplugin/perl6.vim index 4168e7ff4..1974b3366 100644 --- a/runtime/ftplugin/perl6.vim +++ b/runtime/ftplugin/perl6.vim @@ -3,7 +3,7 @@ " 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: 2013-05-11 +" Last Change: 2013 Jul 24 " Contributors: Hinrik Örn Sigurðsson <hinrik.sig@gmail.com> " " Based on ftplugin/perl.vim by Dan Sharp <dwsharp at hotmail dot com> diff --git a/runtime/ftplugin/tt2html.vim b/runtime/ftplugin/tt2html.vim new file mode 100644 index 000000000..abb1ed87e --- /dev/null +++ b/runtime/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: 2013 Jul 24 + +" 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 diff --git a/runtime/ftplugin/xs.vim b/runtime/ftplugin/xs.vim index 6e4d99fb9..5ac2353d0 100644 --- a/runtime/ftplugin/xs.vim +++ b/runtime/ftplugin/xs.vim @@ -3,7 +3,7 @@ " 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: 2009-08-14 +" Last Change: 2013 Jul 24 " Only do this when not done yet for this buffer if exists("b:did_ftplugin") |