# HG changeset patch # User Bram Moolenaar # Date 1686243603 -7200 # Node ID 9514e94d4ebe202c05579b8ebc98d622d7417b29 # Parent 8543c603823070c71ceaeca16c2933e7939ee75a patch 9.0.1618: Trace32 files are not recognized Commit: https://github.com/vim/vim/commit/7fbcee6f928356f1c205a4dfa67c1d542f743b92 Author: Christoph Sax Date: Thu Jun 8 17:57:19 2023 +0100 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 https://github.com/vim/vim/issues/12505) diff --git a/runtime/filetype.vim b/runtime/filetype.vim --- 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 diff --git a/src/testdir/test_filetype.vim b/src/testdir/test_filetype.vim --- a/src/testdir/test_filetype.vim +++ b/src/testdir/test_filetype.vim @@ -662,6 +662,7 @@ def s:GetFilenameChecks(): dict