diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-04-20 20:21:23 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-04-20 20:21:23 +0200 |
commit | 3f88e71fa2b8b1fc97f3c218989474ea8687d197 (patch) | |
tree | d4226ffa755aedc8793e583267a9368818d63d47 /runtime | |
parent | 6d4c1c7ba816294408097d72717366a97781655d (diff) | |
download | vim-git-3f88e71fa2b8b1fc97f3c218989474ea8687d197.tar.gz |
patch 8.2.2788: Raku is now the only name what once was called perl6v8.2.2788
Problem: Raku is now the only name what once was called perl6.
Solution: Adjust the filetype detection. (closes #8120)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 16f46f3b3..7364d3f2b 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1208,8 +1208,6 @@ else au BufNewFile,BufRead *.pl call dist#ft#FTpl() endif au BufNewFile,BufRead *.plx,*.al,*.psgi setf perl -au BufNewFile,BufRead *.p6,*.pm6,*.pl6 setf perl6 -au BufNewFile,BufRead *.raku,*.rakumod setf perl6 " Perl, XPM or XPM2 au BufNewFile,BufRead *.pm @@ -1223,7 +1221,6 @@ 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) @@ -1366,6 +1363,9 @@ au BufNewFile,BufRead *.ptl,*.pyi,SConstruct setf python " Radiance au BufNewFile,BufRead *.rad,*.mat setf radiance +" Raku (formelly Perl6) +au BufNewFile,BufRead *.pm6,*.p6,*.t6,*.pod6,*.raku,*.rakumod,*.rakudoc,*.rakutest setf raku + " Ratpoison config/command files au BufNewFile,BufRead .ratpoisonrc,ratpoisonrc setf ratpoison |