2014-07-10 21:05:51 -07:00
|
|
|
" Vim filetype plugin file
|
|
|
|
" Language: C
|
2023-08-13 05:25:10 -07:00
|
|
|
" Maintainer: The Vim Project <https://github.com/vim/vim>
|
|
|
|
" Last Change: 2023 Aug 10
|
|
|
|
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
|
2014-07-10 21:05:51 -07:00
|
|
|
|
|
|
|
" Only do this when not done yet for this buffer
|
|
|
|
if exists("b:did_ftplugin")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
|
|
|
" Don't load another plugin for this buffer
|
|
|
|
let b:did_ftplugin = 1
|
|
|
|
|
|
|
|
" Using line continuation here.
|
|
|
|
let s:cpo_save = &cpo
|
|
|
|
set cpo-=C
|
|
|
|
|
2021-04-26 18:25:27 -07:00
|
|
|
let b:undo_ftplugin = "setl fo< com< ofu< cms< def< inc<"
|
2014-07-10 21:05:51 -07:00
|
|
|
|
|
|
|
" Set 'formatoptions' to break comment lines but not other lines,
|
|
|
|
" and insert the comment leader when hitting <CR> or using "o".
|
|
|
|
setlocal fo-=t fo+=croql
|
|
|
|
|
2021-04-26 18:25:27 -07:00
|
|
|
" These options have the right value as default, but the user may have
|
|
|
|
" overruled that.
|
|
|
|
setlocal commentstring& define& include&
|
|
|
|
|
2014-07-10 21:05:51 -07:00
|
|
|
" Set completion with CTRL-X CTRL-O to autoloaded function.
|
|
|
|
if exists('&ofu')
|
|
|
|
setlocal ofu=ccomplete#Complete
|
|
|
|
endif
|
|
|
|
|
|
|
|
" Set 'comments' to format dashed lists in comments.
|
2022-04-08 10:53:41 -07:00
|
|
|
" Also include ///, used for Doxygen.
|
|
|
|
setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:///,://
|
2014-07-10 21:05:51 -07:00
|
|
|
|
|
|
|
" When the matchit plugin is loaded, this makes the % command skip parens and
|
2017-11-07 12:43:11 -07:00
|
|
|
" braces in comments properly.
|
2021-09-22 06:12:06 -07:00
|
|
|
if !exists("b:match_words")
|
|
|
|
let b:match_words = '^\s*#\s*if\(\|def\|ndef\)\>:^\s*#\s*elif\>:^\s*#\s*else\>:^\s*#\s*endif\>'
|
|
|
|
let b:match_skip = 's:comment\|string\|character\|special'
|
|
|
|
let b:undo_ftplugin ..= " | unlet! b:match_skip b:match_words"
|
|
|
|
endif
|
2014-07-10 21:05:51 -07:00
|
|
|
|
|
|
|
" Win32 can filter files in the browse dialog
|
|
|
|
if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
|
|
|
|
if &ft == "cpp"
|
|
|
|
let b:browsefilter = "C++ Source Files (*.cpp *.c++)\t*.cpp;*.c++\n" .
|
|
|
|
\ "C Header Files (*.h)\t*.h\n" .
|
|
|
|
\ "C Source Files (*.c)\t*.c\n" .
|
|
|
|
\ "All Files (*.*)\t*.*\n"
|
|
|
|
elseif &ft == "ch"
|
|
|
|
let b:browsefilter = "Ch Source Files (*.ch *.chf)\t*.ch;*.chf\n" .
|
|
|
|
\ "C Header Files (*.h)\t*.h\n" .
|
|
|
|
\ "C Source Files (*.c)\t*.c\n" .
|
|
|
|
\ "All Files (*.*)\t*.*\n"
|
|
|
|
else
|
|
|
|
let b:browsefilter = "C Source Files (*.c)\t*.c\n" .
|
|
|
|
\ "C Header Files (*.h)\t*.h\n" .
|
|
|
|
\ "Ch Source Files (*.ch *.chf)\t*.ch;*.chf\n" .
|
|
|
|
\ "C++ Source Files (*.cpp *.c++)\t*.cpp;*.c++\n" .
|
|
|
|
\ "All Files (*.*)\t*.*\n"
|
|
|
|
endif
|
2021-09-22 06:12:06 -07:00
|
|
|
let b:undo_ftplugin ..= " | unlet! b:browsefilter"
|
2014-07-10 21:05:51 -07:00
|
|
|
endif
|
|
|
|
|
2016-08-24 08:56:33 -07:00
|
|
|
let b:man_default_sects = '3,2'
|
|
|
|
|
2014-07-10 21:05:51 -07:00
|
|
|
let &cpo = s:cpo_save
|
|
|
|
unlet s:cpo_save
|