Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 1.24 KB

README.md

File metadata and controls

42 lines (30 loc) · 1.24 KB

vim-usd-create-auto-convert convert Pixar's USD binary format into ASCII and then writes back to binary, all within a single Vim session. With vim-usd-create-auto-convert, you can edit, write, and save crate files as if they were ASCII and the plugin handles all the conversions for you.

Demo

asciicast

Installation

Use your plugin manager to add this plugin to Vim.

vim-plug

Plug 'ColinKennedy/vim-usd-crate-auto-convert'

Vundle

Plugin 'ColinKennedy/vim-usd-crate-auto-convert'

Requirements

  • Must have USD compiled
  • usdcat (or another equivalent executable) command must be available in your PATH environment variable. usdcat is used to convert to and from binary.

Options

If you want to use your own command for usdcat, consider adding this line to your .vimrc

let g:usdcat_command = 'something'
Variable Description Default
g:usdcat_command The executable that will be used to convert to and from USD crate (binary) "usdcat"