mirror of
https://github.com/vim/vim.git
synced 2025-07-04 23:07:33 -04:00
patch 8.2.2790: filetype test fails
Problem: filetype test fails Solution: Also update the scripts detection
This commit is contained in:
parent
8238f08838
commit
63276685f9
@ -110,10 +110,6 @@ if s:line1 =~# "^#!"
|
||||
elseif s:name =~# 'lua'
|
||||
set ft=lua
|
||||
|
||||
" Perl 6
|
||||
elseif s:name =~# 'perl6'
|
||||
set ft=perl6
|
||||
|
||||
" Perl
|
||||
elseif s:name =~# 'perl'
|
||||
set ft=perl
|
||||
@ -130,6 +126,10 @@ if s:line1 =~# "^#!"
|
||||
elseif s:name =~# '^groovy\>'
|
||||
set ft=groovy
|
||||
|
||||
" Raku
|
||||
elseif s:name =~# 'raku'
|
||||
set ft=raku
|
||||
|
||||
" Ruby
|
||||
elseif s:name =~# 'ruby'
|
||||
set ft=ruby
|
||||
|
@ -750,6 +750,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
2790,
|
||||
/**/
|
||||
2789,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user