summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorColin Kennedy <colinvfx@gmail.com>2023-05-13 12:15:57 +0100
committerBram Moolenaar <Bram@vim.org>2023-05-13 12:15:57 +0100
commitb848ce6b7e27f24aff47a4d63933e0f96663acfe (patch)
tree6aa4e07be4860997b81f350010f25279ff7cf9e6 /runtime
parentff40b625a693cf5094abe76b77655f13ad48739b (diff)
downloadvim-git-b848ce6b7e27f24aff47a4d63933e0f96663acfe.tar.gz
patch 9.0.1549: USD filetype is not recognizedv9.0.1549
Problem: USD filetype is not recognized. Solution: Add patterns for USD filetype. (Colin Kennedy, closes #12370)
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 7618902fd..fe1a88857 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -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')