diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-17 22:41:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-17 22:41:51 -0400 |
commit | a129887c00a2d5e49fc551ba0bbffe88cefb56c0 (patch) | |
tree | 9a2dad0787bd0717db2285c825c6f47189f73d4f /src | |
parent | 63b64ebab0682f149182eb0860b6f71753dab1ee (diff) | |
download | rneovim-a129887c00a2d5e49fc551ba0bbffe88cefb56c0.tar.gz rneovim-a129887c00a2d5e49fc551ba0bbffe88cefb56c0.tar.bz2 rneovim-a129887c00a2d5e49fc551ba0bbffe88cefb56c0.zip |
vim-patch:8.2.2773: PSL filetype not recognized (#14389)
Problem: PSL filetype not recognized.
Solution: Add a filetype pattern. (Daniel Kho, closes vim/vim#8117)
https://github.com/vim/vim/commit/112a006417a0d4700ff39ddba3bb5e985ae9770f
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_filetype.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_filetype.vim b/src/nvim/testdir/test_filetype.vim index bd2e673570..3cfc964f0a 100644 --- a/src/nvim/testdir/test_filetype.vim +++ b/src/nvim/testdir/test_filetype.vim @@ -376,6 +376,7 @@ let s:filename_checks = { \ 'ps1': ['file.ps1', 'file.psd1', 'file.psm1', 'file.pssc'], \ 'ps1xml': ['file.ps1xml'], \ 'psf': ['file.psf'], + \ 'psl': ['file.psl'], \ 'puppet': ['file.pp'], \ 'pyrex': ['file.pyx', 'file.pxd'], \ 'python': ['file.py', 'file.pyw', '.pythonstartup', '.pythonrc', 'file.ptl', 'file.pyi', 'SConstruct'], |