vim-patch:93f6454: runtime(openscad): add a filetype plugin

closes: vim/vim#17902

93f6454724

Co-authored-by: Squibid <me@zacharyscheiman.com>
This commit is contained in:
Christian Clason
2025-08-07 15:48:45 +02:00
committed by Christian Clason
parent 6502dd43c4
commit d994be44d7

View File

@@ -0,0 +1,14 @@
" Vim filetype plugin file
" Language: OpenSCAD (https://openscad.org)
" Maintainer: Zachary Scheiman <me@zacharyscheiman.com>
" Last Change: 2025 Aug 3
if exists('b:did_ftplugin')
finish
endif
let b:did_ftplugin = 1
" Comments in openscad follow C/C++ syntax
setlocal commentstring=//\ %s
let b:undo_ftplugin = 'setl commentstring<'