diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-04-08 22:42:54 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2024-04-09 10:24:49 +0200 |
commit | 41521658b1dca302a4c7125753694b59a317c0f9 (patch) | |
tree | 57017c3029dd16d596053dcc9f32497fe838aaa6 /test | |
parent | 168e69ae0156e2b59e1d44b6cadbf7359d5285e9 (diff) | |
download | rneovim-41521658b1dca302a4c7125753694b59a317c0f9.tar.gz rneovim-41521658b1dca302a4c7125753694b59a317c0f9.tar.bz2 rneovim-41521658b1dca302a4c7125753694b59a317c0f9.zip |
vim-patch:9.1.0276: No pandoc syntax support
Problem: No pandoc syntax support
Solution: Add pandoc syntax and compiler plugins
(Wu, Zhenyu, Konfekt)
closes: vim/vim#14389
https://github.com/vim/vim/commit/7005b7ee7f282b24378c2a844366cb8616cad5d7
Co-authored-by: Wu, Zhenyu <wuzhenyu@ustc.edu>
Co-authored-by: Konfekt <Konfekt@users.noreply.github.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/old/testdir/test_filetype.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/old/testdir/test_filetype.vim b/test/old/testdir/test_filetype.vim index 2f4682d4d8..a8d781fefb 100644 --- a/test/old/testdir/test_filetype.vim +++ b/test/old/testdir/test_filetype.vim @@ -488,6 +488,7 @@ func s:GetFilenameChecks() abort \ 'pacmanlog': ['pacman.log'], \ 'pamconf': ['/etc/pam.conf', '/etc/pam.d/file', 'any/etc/pam.conf', 'any/etc/pam.d/file'], \ 'pamenv': ['/etc/security/pam_env.conf', '/home/user/.pam_environment', '.pam_environment', 'pam_env.conf'], + \ 'pandoc': ['file.pandoc', 'file.pdk', 'file.pd', 'file.pdc'], \ 'papp': ['file.papp', 'file.pxml', 'file.pxsl'], \ 'pascal': ['file.pas', 'file.dpr', 'file.lpr'], \ 'passwd': ['any/etc/passwd', 'any/etc/passwd-', 'any/etc/passwd.edit', 'any/etc/shadow', 'any/etc/shadow-', 'any/etc/shadow.edit', 'any/var/backups/passwd.bak', 'any/var/backups/shadow.bak', '/etc/passwd', '/etc/passwd-', '/etc/passwd.edit', '/etc/shadow', '/etc/shadow-', '/etc/shadow.edit', '/var/backups/passwd.bak', '/var/backups/shadow.bak'], |