]> granicus.if.org Git - vim/commitdiff
patch 9.0.1394: Unx Tal files are not recognized v9.0.1394
authorAmaan Qureshi <amaanq12@gmail.com>
Wed, 8 Mar 2023 19:55:50 +0000 (19:55 +0000)
committerBram Moolenaar <Bram@vim.org>
Wed, 8 Mar 2023 19:55:50 +0000 (19:55 +0000)
Problem:    Unx Tal files are not recognized.
Solution:   Add a pattern for Unx Tal files. (Amaan Qureshi, closes #12117)

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

index 59cb06c3c09e8f6db7123ae4fbfcebd3edc2a632..b5cae1b5ad30e2eab4ce82e35c354f95e0a597ef 100644 (file)
@@ -2109,6 +2109,9 @@ au BufNewFile,BufRead tags                        setf tags
 " TAK
 au BufNewFile,BufRead *.tak                    setf tak
 
+" Unx Tal
+au BufNewFile,BufRead *.tal                    setf tal
+
 " Task
 au BufRead,BufNewFile {pending,completed,undo}.data  setf taskdata
 au BufRead,BufNewFile *.task                   setf taskedit
index 042c25df28dcb331c699d9d9ec3b633899db584d..fa09482f16c4e90108edd497afd3b75ef1f87c9d 100644 (file)
@@ -581,6 +581,7 @@ let s:filename_checks = {
     \ 'systemverilog': ['file.sv', 'file.svh'],
     \ 'tags': ['tags'],
     \ 'tak': ['file.tak'],
+    \ 'tal': ['file.tal'],
     \ 'taskdata': ['pending.data', 'completed.data', 'undo.data'],
     \ 'taskedit': ['file.task'],
     \ 'tcl': ['file.tcl', 'file.tm', 'file.tk', 'file.itcl', 'file.itk', 'file.jacl', '.tclshrc', 'tclsh.rc', '.wishrc'],
index 3a2ff57c97714ae0996cde2ce1d8d6a687dd77c0..34fe679d6042a06eb62646147f27a4b97916f4c7 100644 (file)
@@ -695,6 +695,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1394,
 /**/
     1393,
 /**/