diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-05-10 18:36:07 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2024-05-11 09:13:57 +0200 |
commit | a6873450b96ff3c6021997c1d18cb189d4466a36 (patch) | |
tree | 352930b8d378b4f389ee381223978adadee0fb96 /runtime/lua/vim | |
parent | a9fd17e23289c4a74edbb6f02abde14ab4eac05c (diff) | |
download | rneovim-a6873450b96ff3c6021997c1d18cb189d4466a36.tar.gz rneovim-a6873450b96ff3c6021997c1d18cb189d4466a36.tar.bz2 rneovim-a6873450b96ff3c6021997c1d18cb189d4466a36.zip |
vim-patch:9.1.0402: filetype: mdd files detected as zsh filetype
Problem: filetype: mdd files detected as zsh filetype
Solution: detect '*.mdd' files as sh filetype, add links
to reference documentation (Wu, Zhenyu)
closes: vim/vim#14741
https://github.com/vim/vim/commit/63f2a5b8adfb570792b9a7cbfff1c350913bbe3e
Co-authored-by: Wu, Zhenyu <wuzhenyu@ustc.edu>
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r-- | runtime/lua/vim/filetype.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index 4d3d219415..d6f680b195 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -952,6 +952,7 @@ local extension = { env = detect.sh, ksh = detect.ksh, sh = detect.sh, + mdd = 'sh', sieve = 'sieve', siv = 'sieve', sig = detect.sig, @@ -1208,7 +1209,6 @@ local extension = { zsh = 'zsh', zunit = 'zsh', ['zsh-theme'] = 'zsh', - mdd = 'zsh', vala = 'vala', web = detect.web, pl = detect.pl, |