0
0
mirror of https://github.com/vim/vim.git synced 2025-08-25 19:53:53 -04:00
vim/runtime/ftplugin/openscad.vim
Squibid 93f6454724
runtime(openscad): add a filetype plugin
closes: #17902

Signed-off-by: Squibid <me@zacharyscheiman.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
2025-08-07 15:42:54 +02:00

15 lines
343 B
VimL

" 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<'