mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
c11986ed1a
Update runtime files
b7398fe41c
Co-authored-by: Bram Moolenaar <Bram@vim.org>
19 lines
347 B
VimL
19 lines
347 B
VimL
" 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
|