1
0
forked from aniani/vim

patch 9.0.1618: Trace32 files are not recognized

Problem:    Trace32 files are not recognized.
Solution:   Add patterns for the t32 filetype. (Christoph Sax, closes #12505)
This commit is contained in:
Christoph Sax
2023-06-08 17:57:19 +01:00
committed by Bram Moolenaar
parent 577922b917
commit 7fbcee6f92
3 changed files with 6 additions and 0 deletions

View File

@@ -2234,6 +2234,9 @@ au BufNewFile,BufRead *.toml setf toml
" TPP - Text Presentation Program " TPP - Text Presentation Program
au BufNewFile,BufRead *.tpp setf tpp au BufNewFile,BufRead *.tpp setf tpp
" TRACE32 Script Language
au BufNewFile,BufRead *.cmm,*.t32 setf t32
" Treetop " Treetop
au BufRead,BufNewFile *.treetop setf treetop au BufRead,BufNewFile *.treetop setf treetop

View File

@@ -662,6 +662,7 @@ def s:GetFilenameChecks(): dict<list<string>>
'any/etc/systemd/system/file.d/.#-file', 'any/etc/systemd/system/file.d/.#-file',
'any/etc/systemd/system/file.d/file.conf'], 'any/etc/systemd/system/file.d/file.conf'],
systemverilog: ['file.sv', 'file.svh'], systemverilog: ['file.sv', 'file.svh'],
t32: ['file.cmm', 'file.t32'],
tags: ['tags'], tags: ['tags'],
tak: ['file.tak'], tak: ['file.tak'],
tal: ['file.tal'], tal: ['file.tal'],

View File

@@ -695,6 +695,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
1618,
/**/ /**/
1617, 1617,
/**/ /**/