1
0
forked from aniani/vim

patch 9.0.1407: TableGen files are not recognized

Problem:    TableGen files are not recognized.
Solution:   Add a pattern for TableGen files. (Amaan Qureshi, closes #12156)
This commit is contained in:
Amaan Qureshi
2023-03-16 15:54:18 +00:00
committed by Bram Moolenaar
parent e202ec8a0c
commit b8ef029ee4
3 changed files with 6 additions and 0 deletions

View File

@@ -2105,6 +2105,9 @@ au BufNewFile,BufRead *.svg setf svg
" Surface
au BufRead,BufNewFile *.sface setf surface
" LLVM TableGen
au BufNewFile,BufRead *.td setf tablegen
" Tads (or Nroff or Perl test file)
au BufNewFile,BufRead *.t
\ if !dist#ft#FTnroff() && !dist#ft#FTperl() | setf tads | endif