diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-07-16 22:29:39 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2024-07-17 11:11:58 +0200 |
commit | 8e590cae83c321445a598fcd87bb31b6187402f7 (patch) | |
tree | 8e0ec725fb39af98cd1d322d30d6c3cbc8fae910 /test/old/testdir | |
parent | 498d9beed9117ce7b70add99ee6f1107ef9e7662 (diff) | |
download | rneovim-8e590cae83c321445a598fcd87bb31b6187402f7.tar.gz rneovim-8e590cae83c321445a598fcd87bb31b6187402f7.tar.bz2 rneovim-8e590cae83c321445a598fcd87bb31b6187402f7.zip |
vim-patch:9.1.0593: filetype: Asymptote files are not recognized
Problem: filetype: Asymptote files are not recognized
Solution: detect '*.asy' files as asy filetype, include
ftplugin and syntax plugin (AvidSeeker).
Reference: https://asymptote.sourceforge.io/
closes: vim/vim#15252
https://github.com/vim/vim/commit/3088ef094da721dac8c0363a6c9e14eaf9313929
Co-authored-by: AvidSeeker <avidseeker7@protonmail.com>
Diffstat (limited to 'test/old/testdir')
-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 6db4cfd696..adc5ee076b 100644 --- a/test/old/testdir/test_filetype.vim +++ b/test/old/testdir/test_filetype.vim @@ -108,6 +108,7 @@ func s:GetFilenameChecks() abort \ 'asn': ['file.asn', 'file.asn1'], \ 'asterisk': ['asterisk/file.conf', 'asterisk/file.conf-file', 'some-asterisk/file.conf', 'some-asterisk/file.conf-file'], \ 'astro': ['file.astro'], + \ 'asy': ['file.asy'], \ 'atlas': ['file.atl', 'file.as'], \ 'authzed': ['schema.zed'], \ 'autohotkey': ['file.ahk'], |