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:
committed by
Bram Moolenaar
parent
577922b917
commit
7fbcee6f92
@@ -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
|
||||||
|
|
||||||
|
|||||||
@@ -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'],
|
||||||
|
|||||||
@@ -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,
|
||||||
/**/
|
/**/
|
||||||
|
|||||||
Reference in New Issue
Block a user