From 954aed886ec2416e810c534fbd95818c99cdb71e Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Sun, 14 Jun 2020 17:58:53 -0400 Subject: 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) https://github.com/vim/vim/commit/a65d8b5bb9e9267c6e4500c67d26c839a64f30eb --- runtime/filetype.vim | 1 + 1 file changed, 1 insertion(+) (limited to 'runtime') diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 2ba80a7d3b..f24352323d 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1162,6 +1162,7 @@ else 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 -- cgit