Hi Bram,
In honour of the impending Rakudo Star release, would you accept this
patch which sets ft to perl6 instead of perl when the hashbang contains
perl6?
Thanks, and a Merry Christmas¹,
– Michael
¹:
http://news.techworld.com/applications/3233070/perl-creator-larry-wall-hints-at-final-perl-6-release/
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
diff -r 33148c37f3c9 runtime/scripts.vim
--- a/runtime/scripts.vim Wed Jul 28 19:38:16 2010 +0200
+++ b/runtime/scripts.vim Wed Jul 28 21:54:24 2010 +0200
@@ -99,6 +99,10 @@
" Lua
elseif s:name =~ 'lua'
set ft=lua
+
+ " Perl 6
+ elseif s:name =~ 'perl6'
+ set ft=perl6
" Perl
elseif s:name =~ 'perl'