vim-patch:8.2.0980: raku file extension not recognized

Problem:    Raku file extension not recognized. (Steven Penny)
Solution:   Recognize .raku and .rakumod. (closes vim/vim#6255)
a65d8b5bb9
This commit is contained in:
Jan Edmund Lazo
2020-06-14 17:58:53 -04:00
parent e681a317fe
commit 954aed886e
2 changed files with 2 additions and 1 deletions

View File

@@ -1162,6 +1162,7 @@ else
endif endif
au BufNewFile,BufRead *.plx,*.al,*.psgi setf perl au BufNewFile,BufRead *.plx,*.al,*.psgi setf perl
au BufNewFile,BufRead *.p6,*.pm6,*.pl6 setf perl6 au BufNewFile,BufRead *.p6,*.pm6,*.pl6 setf perl6
au BufNewFile,BufRead *.raku,*.rakumod setf perl6
" Perl, XPM or XPM2 " Perl, XPM or XPM2
au BufNewFile,BufRead *.pm au BufNewFile,BufRead *.pm

View File

@@ -329,7 +329,7 @@ let s:filename_checks = {
\ 'pccts': ['file.g'], \ 'pccts': ['file.g'],
\ 'pdf': ['file.pdf'], \ 'pdf': ['file.pdf'],
\ 'perl': ['file.plx', 'file.al', 'file.psgi', 'gitolite.rc', '.gitolite.rc', 'example.gitolite.rc'], \ 'perl': ['file.plx', 'file.al', 'file.psgi', 'gitolite.rc', '.gitolite.rc', 'example.gitolite.rc'],
\ 'perl6': ['file.p6', 'file.pm6', 'file.pl6'], \ 'perl6': ['file.p6', 'file.pm6', 'file.pl6', 'file.raku', 'file.rakumod'],
\ 'pf': ['pf.conf'], \ 'pf': ['pf.conf'],
\ 'pfmain': ['main.cf'], \ 'pfmain': ['main.cf'],
\ 'php': ['file.php', 'file.php9', 'file.phtml', 'file.ctp'], \ 'php': ['file.php', 'file.php9', 'file.phtml', 'file.ctp'],