mirror of
https://github.com/vim/vim
synced 2025-03-15 06:17:51 +01:00
closes: #16090 Signed-off-by: Turiiya <34311583+ttytm@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
14 lines
326 B
VimL
14 lines
326 B
VimL
" Vim filetype plugin
|
|
" Language: C3
|
|
" Maintainer: Turiiya <34311583+ttytm@users.noreply.github.com>
|
|
" Last Change: 2024 Nov 24
|
|
|
|
if exists('b:did_ftplugin')
|
|
finish
|
|
endif
|
|
let b:did_ftplugin = 1
|
|
|
|
setl comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:///,://
|
|
setl commentstring=//\ %s
|
|
|
|
let b:undo_ftplugin = 'setl com< cms<'
|