summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorChristoph Sax <christoph.sax@mailbox.org>2023-06-08 17:57:19 +0100
committerBram Moolenaar <Bram@vim.org>2023-06-08 17:57:19 +0100
commit7fbcee6f928356f1c205a4dfa67c1d542f743b92 (patch)
tree9f7b0591dcf3999527b3baabaeb7b2eb82a4a62a /runtime
parent577922b917e48285a7a312daf7b5bbc6e272939c (diff)
patch 9.0.1618: Trace32 files are not recognizedv9.0.1618
Problem: Trace32 files are not recognized. Solution: Add patterns for the t32 filetype. (Christoph Sax, closes #12505)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/filetype.vim3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index 0693cba546..89a30a8df9 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -2234,6 +2234,9 @@ au BufNewFile,BufRead *.toml setf toml
" TPP - Text Presentation Program
au BufNewFile,BufRead *.tpp setf tpp
+" TRACE32 Script Language
+au BufNewFile,BufRead *.cmm,*.t32 setf t32
+
" Treetop
au BufRead,BufNewFile *.treetop setf treetop