summaryrefslogtreecommitdiffstats
path: root/runtime/ftplugin/usd.vim
blob: c795ba591b614c5d30ae307cc052ea767f956657 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
" Vim filetype plugin file
" Language:     Pixar Animation's Universal Scene Description format
" Maintainer:   Colin Kennedy <colinvfx@gmail.com>
" Last Change:  2023 May 9

if exists("b:did_ftplugin")
  finish
endif

let s:cpo_save = &cpo
set cpo&vim

let b:did_ftplugin = 1

setlocal commentstring=#\ %s

let &cpo = s:cpo_save
unlet s:cpo_save