diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-06-08 21:53:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-08 21:53:16 +0200 |
commit | be539f5fa8e2d7ad73f7f69941bd6ff13354e89c (patch) | |
tree | f3ee61ff7361de3d2af7a85c24de3361b6a5466c /runtime/lua | |
parent | 7c661207cc4357553ed2b057b6c8f28400024361 (diff) | |
download | rneovim-be539f5fa8e2d7ad73f7f69941bd6ff13354e89c.tar.gz rneovim-be539f5fa8e2d7ad73f7f69941bd6ff13354e89c.tar.bz2 rneovim-be539f5fa8e2d7ad73f7f69941bd6ff13354e89c.zip |
vim-patch:9.0.1618: Trace32 files are not recognized (#23960)
Problem: Trace32 files are not recognized.
Solution: Add patterns for the t32 filetype. (Christoph Sax, closes vim/vim#12505)
https://github.com/vim/vim/commit/7fbcee6f928356f1c205a4dfa67c1d542f743b92
Co-authored-by: Christoph Sax <christoph.sax@mailbox.org>
Diffstat (limited to 'runtime/lua')
-rw-r--r-- | runtime/lua/vim/filetype.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index 13d3d3e53a..18c47ea2f4 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -1033,6 +1033,8 @@ local extension = { swift = 'swift', svh = 'systemverilog', sv = 'systemverilog', + cmm = 't32', + t32 = 't32', td = 'tablegen', tak = 'tak', tal = 'tal', |