mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
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:
parent
8bdcc91dc8
commit
66ba81a6f7
@ -800,6 +800,7 @@ local extension = {
|
||||
pod = 'pod',
|
||||
filter = 'poefilter',
|
||||
pk = 'poke',
|
||||
pony = 'pony',
|
||||
ps = 'postscr',
|
||||
epsi = 'postscr',
|
||||
afm = 'postscr',
|
||||
|
@ -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'],
|
||||
|
Loading…
Reference in New Issue
Block a user