mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
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)
1756f4b218
Co-authored-by: Carlos A Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
parent
059dfda0ca
commit
050b0e30b9
@ -1057,6 +1057,7 @@ local extension = {
|
|||||||
hdl = 'vhdl',
|
hdl = 'vhdl',
|
||||||
vho = 'vhdl',
|
vho = 'vhdl',
|
||||||
vbe = 'vhdl',
|
vbe = 'vhdl',
|
||||||
|
tape = 'vhs',
|
||||||
vim = 'vim',
|
vim = 'vim',
|
||||||
vba = 'vim',
|
vba = 'vim',
|
||||||
mar = 'vmasm',
|
mar = 'vmasm',
|
||||||
|
@ -612,6 +612,7 @@ let s:filename_checks = {
|
|||||||
\ 'verilogams': ['file.va', 'file.vams'],
|
\ 'verilogams': ['file.va', 'file.vams'],
|
||||||
\ 'vgrindefs': ['vgrindefs'],
|
\ 'vgrindefs': ['vgrindefs'],
|
||||||
\ 'vhdl': ['file.hdl', 'file.vhd', 'file.vhdl', 'file.vbe', 'file.vst', 'file.vhdl_123', 'file.vho', 'some.vhdl_1', 'some.vhdl_1-file'],
|
\ 'vhdl': ['file.hdl', 'file.vhd', 'file.vhdl', 'file.vbe', 'file.vst', 'file.vhdl_123', 'file.vho', 'some.vhdl_1', 'some.vhdl_1-file'],
|
||||||
|
\ 'vhs': ['file.tape'],
|
||||||
\ 'vim': ['file.vim', 'file.vba', '.exrc', '_exrc', 'some-vimrc', 'some-vimrc-file', 'vimrc', 'vimrc-file'],
|
\ 'vim': ['file.vim', 'file.vba', '.exrc', '_exrc', 'some-vimrc', 'some-vimrc-file', 'vimrc', 'vimrc-file'],
|
||||||
\ 'viminfo': ['.viminfo', '_viminfo'],
|
\ 'viminfo': ['.viminfo', '_viminfo'],
|
||||||
\ 'vmasm': ['file.mar'],
|
\ 'vmasm': ['file.mar'],
|
||||||
|
Loading…
Reference in New Issue
Block a user