1
0
forked from aniani/vim

patch 9.0.1549: USD filetype is not recognized

Problem:    USD filetype is not recognized.
Solution:   Add patterns for USD filetype. (Colin Kennedy, closes #12370)
This commit is contained in:
Colin Kennedy
2023-05-13 12:15:57 +01:00
committed by Bram Moolenaar
parent ff40b625a6
commit b848ce6b7e
3 changed files with 6 additions and 0 deletions

View File

@@ -2746,6 +2746,9 @@ au BufNewFile,BufRead .login*,.cshrc* call dist#ft#CSH()
" tmux configuration with arbitrary extension
au BufNewFile,BufRead {.,}tmux*.conf* setf tmux
" Universal Scene Description
au BufNewFile,BufRead *.usda,*.usd setf usd
" VHDL
au BufNewFile,BufRead *.vhdl_[0-9]* call s:StarSetf('vhdl')