diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-11-07 22:28:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-07 22:28:28 +0100 |
commit | 050b0e30b9d8a073a3b421a6cebd878226249ab6 (patch) | |
tree | 61c0f5f7ab671ec3b69c4c4b8bf1a635097898d7 /runtime | |
parent | 059dfda0caef85688c2b555ec8379e86721e50fd (diff) | |
download | rneovim-050b0e30b9d8a073a3b421a6cebd878226249ab6.tar.gz rneovim-050b0e30b9d8a073a3b421a6cebd878226249ab6.tar.bz2 rneovim-050b0e30b9d8a073a3b421a6cebd878226249ab6.zip |
vim-patch:9.0.0843: VHS tape files are not recognized (#20995)
Problem: VHS tape files are not recognized.
Solution: Add a filetype pattern. (Carlos Alexandro Becker, closes vim/vim#11452)
https://github.com/vim/vim/commit/1756f4b21837e8596241ecd668f4abbbab4bc7e5
Co-authored-by: Carlos A Becker <caarlos0@users.noreply.github.com>
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/lua/vim/filetype.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index 56659eff04..5aa968e211 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -1057,6 +1057,7 @@ local extension = { hdl = 'vhdl', vho = 'vhdl', vbe = 'vhdl', + tape = 'vhs', vim = 'vim', vba = 'vim', mar = 'vmasm', |