]> granicus.if.org Git - vim/commitdiff
patch 9.0.0843: VHS tape files are not recognized v9.0.0843
authorCarlos A Becker <caarlos0@users.noreply.github.com>
Mon, 7 Nov 2022 11:17:29 +0000 (11:17 +0000)
committerBram Moolenaar <Bram@vim.org>
Mon, 7 Nov 2022 11:17:29 +0000 (11:17 +0000)
Problem:    VHS tape files are not recognized.
Solution:   Add a filetype pattern. (Carlos Alexandro Becker, closes #11452)

runtime/filetype.vim
src/testdir/test_filetype.vim
src/version.c

index 421d2a36b6af153eb6bd50524d4720a4f976f4b4..192dc53bc7178e19ec55e910cc6377bc9f585339 100644 (file)
@@ -2181,6 +2181,11 @@ au BufNewFile,BufRead *.va,*.vams                setf verilogams
 " SystemVerilog
 au BufNewFile,BufRead *.sv,*.svh               setf systemverilog
 
+" VHS tape
+" .tape is also used by TapeCalc, which we do not support ATM.  If TapeCalc
+" support is needed the contents of the file needs to be inspected.
+au BufNewFile,BufRead *.tape                   setf vhs
+
 " VHDL
 au BufNewFile,BufRead *.hdl,*.vhd,*.vhdl,*.vbe,*.vst,*.vho  setf vhdl
 
index 22e5198f2ddf453da16596ebb55f29d7642c43ff..7b41955e8a490a02b017044ffd5997c02f0be068 100644 (file)
@@ -611,6 +611,7 @@ let s:filename_checks = {
     \ 'verilogams': ['file.va', 'file.vams'],
     \ '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'],
+    \ 'vhs': ['file.tape'],
     \ 'vim': ['file.vim', 'file.vba', '.exrc', '_exrc', 'some-vimrc', 'some-vimrc-file', 'vimrc', 'vimrc-file'],
     \ 'viminfo': ['.viminfo', '_viminfo'],
     \ 'vmasm': ['file.mar'],
index d46aebb6fe5d23bf156d9a2037cea675d8f717bf..a6083ebc24f9aa507841d218cfec8bb8fc21169e 100644 (file)
@@ -695,6 +695,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    843,
 /**/
     842,
 /**/