diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-02 13:44:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-02 13:44:25 -0400 |
commit | dde89730b453fd2b84860e58bb8893c92417128b (patch) | |
tree | 4f0cf5963153cede22a0ad33241d7fd95b7059cc /src | |
parent | 22ef4071f0dedc344ddc48dcc7f463ee4cd84e44 (diff) | |
download | rneovim-dde89730b453fd2b84860e58bb8893c92417128b.tar.gz rneovim-dde89730b453fd2b84860e58bb8893c92417128b.tar.bz2 rneovim-dde89730b453fd2b84860e58bb8893c92417128b.zip |
vim-patch:8.2.2690: PowerShell files are not recognized (#14276)
Problem: PowerShell files are not recognized.
Solution: Recognize several PowerShell extension. (Heath Stewart,
closes vim/vim#8051)
https://github.com/vim/vim/commit/ef38bcf05196ad7e795dd77b4922fa9db58fc310
N/A patches for version.c:
vim-patch:8.2.2689: tiny build fails
Problem: Tiny build fails.
Solution: Add #ifdef around use of p_stl.
https://github.com/vim/vim/commit/160a2b4dac198f31fbcff9d696548e011c4602c1
vim-patch:8.2.2691: autoconf may mess up compiler flags
Problem: Autoconf may mess up compiler flags.
Solution: Handle removing FORTIFY_SOURCE a bit better. (Vladimir Lomov,
closes vim/vim#8049)
https://github.com/vim/vim/commit/3fa5e64e0ed55de718e48d0268edc360b2352bc1
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_filetype.vim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_filetype.vim b/src/nvim/testdir/test_filetype.vim index 44b8479621..fa0bffd96c 100644 --- a/src/nvim/testdir/test_filetype.vim +++ b/src/nvim/testdir/test_filetype.vim @@ -371,6 +371,8 @@ let s:filename_checks = { \ 'promela': ['file.pml'], \ 'proto': ['file.proto'], \ 'protocols': ['/etc/protocols'], + \ 'ps1': ['file.ps1', 'file.psd1', 'file.psm1', 'file.pssc'], + \ 'ps1xml': ['file.ps1xml'], \ 'psf': ['file.psf'], \ 'puppet': ['file.pp'], \ 'pyrex': ['file.pyx', 'file.pxd'], @@ -521,7 +523,7 @@ let s:filename_checks = { \ 'xhtml': ['file.xhtml', 'file.xht'], \ 'xinetd': ['/etc/xinetd.conf'], \ 'xmath': ['file.msc', 'file.msf'], - \ 'xml': ['/etc/blkid.tab', '/etc/blkid.tab.old', 'file.xmi', 'file.csproj', 'file.csproj.user', 'file.ui', 'file.tpm', '/etc/xdg/menus/file.menu', 'fglrxrc', 'file.xlf', 'file.xliff', 'file.xul', 'file.wsdl', 'file.wpl', 'any/etc/blkid.tab', 'any/etc/blkid.tab.old', 'any/etc/xdg/menus/file.menu', 'file.atom', 'file.rss'], + \ 'xml': ['/etc/blkid.tab', '/etc/blkid.tab.old', 'file.xmi', 'file.csproj', 'file.csproj.user', 'file.ui', 'file.tpm', '/etc/xdg/menus/file.menu', 'fglrxrc', 'file.xlf', 'file.xliff', 'file.xul', 'file.wsdl', 'file.wpl', 'any/etc/blkid.tab', 'any/etc/blkid.tab.old', 'any/etc/xdg/menus/file.menu', 'file.atom', 'file.rss', 'file.cdxml', 'file.psc1'], \ 'xmodmap': ['anyXmodmap'], \ 'xf86conf': ['xorg.conf', 'xorg.conf-4'], \ 'xpm2': ['file.xpm2'], |