vim-patch:9.0.1412: Pony files are not recognized (#22721)

Problem:    Pony files are not recognized.
Solution:   Add a pattern for Pony files. (Amaan Qureshi, closes vim/vim#12155)

6e377eca8d
This commit is contained in:
Amaan Qureshi 2023-03-18 05:34:31 -04:00 committed by GitHub
parent 8bdcc91dc8
commit 66ba81a6f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -800,6 +800,7 @@ local extension = {
pod = 'pod',
filter = 'poefilter',
pk = 'poke',
pony = 'pony',
ps = 'postscr',
epsi = 'postscr',
afm = 'postscr',

View File

@ -449,6 +449,7 @@ let s:filename_checks = {
\ 'pod': ['file.pod'],
\ 'poefilter': ['file.filter'],
\ 'poke': ['file.pk'],
\ 'pony': ['file.pony'],
\ 'postscr': ['file.ps', 'file.pfa', 'file.afm', 'file.eps', 'file.epsf', 'file.epsi', 'file.ai'],
\ 'pov': ['file.pov'],
\ 'povini': ['.povrayrc'],