mirror of
https://github.com/vim/vim.git
synced 2025-10-06 05:44:14 -04:00
patch 8.2.2773: PSL filetype not recognized
Problem: PSL filetype not recognized. Solution: Add a filetype pattern. (Daniel Kho, closes #8117)
This commit is contained in:
@@ -1342,6 +1342,9 @@ au BufNewFile,BufRead *.pdb setf prolog
|
|||||||
" Promela
|
" Promela
|
||||||
au BufNewFile,BufRead *.pml setf promela
|
au BufNewFile,BufRead *.pml setf promela
|
||||||
|
|
||||||
|
" Property Specification Language (PSL)
|
||||||
|
au BufNewFile,BufRead *.psl setf psl
|
||||||
|
|
||||||
" Google protocol buffers
|
" Google protocol buffers
|
||||||
au BufNewFile,BufRead *.proto setf proto
|
au BufNewFile,BufRead *.proto setf proto
|
||||||
au BufNewFile,BufRead *.pbtxt setf pbtxt
|
au BufNewFile,BufRead *.pbtxt setf pbtxt
|
||||||
|
@@ -392,6 +392,7 @@ let s:filename_checks = {
|
|||||||
\ 'ps1': ['file.ps1', 'file.psd1', 'file.psm1', 'file.pssc'],
|
\ 'ps1': ['file.ps1', 'file.psd1', 'file.psm1', 'file.pssc'],
|
||||||
\ 'ps1xml': ['file.ps1xml'],
|
\ 'ps1xml': ['file.ps1xml'],
|
||||||
\ 'psf': ['file.psf'],
|
\ 'psf': ['file.psf'],
|
||||||
|
\ 'psl': ['file.psl'],
|
||||||
\ 'puppet': ['file.pp'],
|
\ 'puppet': ['file.pp'],
|
||||||
\ 'pyrex': ['file.pyx', 'file.pxd'],
|
\ 'pyrex': ['file.pyx', 'file.pxd'],
|
||||||
\ 'python': ['file.py', 'file.pyw', '.pythonstartup', '.pythonrc', 'file.ptl', 'file.pyi', 'SConstruct'],
|
\ 'python': ['file.py', 'file.pyw', '.pythonstartup', '.pythonrc', 'file.ptl', 'file.pyi', 'SConstruct'],
|
||||||
|
@@ -750,6 +750,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
2773,
|
||||||
/**/
|
/**/
|
||||||
2772,
|
2772,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user