aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2024-07-16 22:29:39 +0200
committerChristian Clason <c.clason@uni-graz.at>2024-07-17 11:11:58 +0200
commit8e590cae83c321445a598fcd87bb31b6187402f7 (patch)
tree8e0ec725fb39af98cd1d322d30d6c3cbc8fae910 /runtime/lua/vim
parent498d9beed9117ce7b70add99ee6f1107ef9e7662 (diff)
downloadrneovim-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 'runtime/lua/vim')
-rw-r--r--runtime/lua/vim/filetype.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua
index aa406b229e..99c5e037e5 100644
--- a/runtime/lua/vim/filetype.lua
+++ b/runtime/lua/vim/filetype.lua
@@ -214,6 +214,7 @@ local extension = {
asn = 'asn',
asp = detect.asp,
astro = 'astro',
+ asy = 'asy',
atl = 'atlas',
as = 'atlas',
zed = 'authzed',