vim-patch:b7398fe41c9e (#23627)

Update runtime files

b7398fe41c

Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
Christian Clason
2023-05-15 09:38:32 +02:00
committed by GitHub
parent 189e21ae50
commit c11986ed1a
22 changed files with 456 additions and 157 deletions

18
runtime/ftplugin/usd.vim Normal file
View File

@@ -0,0 +1,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