From 3b8fcd945c5f0ee104eaabcf969fb6f973e79c77 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 3 Dec 2015 20:14:12 +0100 Subject: [PATCH] patch 7.4.955 Problem: Vim doesn't recognize .pl6 and .pod6 files. Solution: Recognize them as perl6 and pod6. (Mike Eve, closes #511) --- runtime/filetype.vim | 3 ++- src/version.c | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 4d2ffe876..2efc13f76 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1400,7 +1400,7 @@ else au BufNewFile,BufRead *.pl call s:FTpl() endif au BufNewFile,BufRead *.plx,*.al setf perl -au BufNewFile,BufRead *.p6,*.pm6 setf perl6 +au BufNewFile,BufRead *.p6,*.pm6,*.pl6 setf perl6 func! s:FTpl() if exists("g:filetype_pl") @@ -1429,6 +1429,7 @@ au BufNewFile,BufRead *.pm " Perl POD au BufNewFile,BufRead *.pod setf pod +au BufNewFile,BufRead *.pod6 setf pod6 " Php, php3, php4, etc. " Also Phtml (was used for PHP 2 in the past) diff --git a/src/version.c b/src/version.c index b459c87b1..1e6322284 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 955, /**/ 954, /**/ -- 2.40.0