mirror of
https://github.com/neovim/neovim.git
synced 2026-01-04 10:26:42 +10:00
2f689d5abd
Skip colors/ and syntax/help_ru.vim: missing previous changes.
Co-authored-by: Christian Brabandt <cb@256bit.org>
15 lines
336 B
VimL
15 lines
336 B
VimL
" Vim filetype plugin
|
|
" Language: C3
|
|
" Maintainer: Turiiya <34311583+ttytm@users.noreply.github.com> (invalid)
|
|
" 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<'
|