Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 720 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 720 Bytes

vim-usd-complete adds USD keywords as tags into Vim. The result is that you get fast auto-completion while writing USD files.

Demo

asciicast

Installation

Clone this plug-in and source it in your Vim environment.

Using vim-plug

Plug 'ColinKennedy/vim-usd-complete'

You'll also need to define filetype(s) for *.usd and *.usda files. This is important. Otherwise, vim-usd-complete will not be able to search for USD-specific tags.

Add these line(s) to your .vimrc:

autocmd! BufRead,BufNewFile *.usd set filetype=usd
autocmd! BufRead,BufNewFile *.usda set filetype=usda