Mercurial > vim
annotate runtime/ftplugin/c.vim @ 33148:7bc10151ce81 v9.0.1856
patch 9.0.1856: issues with formatting positional arguments
Commit: https://github.com/vim/vim/commit/aa90d4f031f73a34aaef5746931ea746849a2231
Author: Christ van Willegen <cvwillegen@gmail.com>
Date: Sun Sep 3 17:22:37 2023 +0200
patch 9.0.1856: issues with formatting positional arguments
Problem: issues with formatting positional arguments
Solution: fix them, add tests and documentation
closes: #12140
closes: #12985
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Christ van Willegen <cvwillegen@gmail.com>
Tentatively fix message_test. Check NULL ptr.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 03 Sep 2023 17:30:05 +0200 |
parents | 4027cefc2aab |
children | 8ae680be2a51 |
rev | line source |
---|---|
7 | 1 " Vim filetype plugin file |
2 " Language: C | |
32770
4027cefc2aab
Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Christian Brabandt <cb@256bit.org>
parents:
28379
diff
changeset
|
3 " Maintainer: The Vim Project <https://github.com/vim/vim> |
4027cefc2aab
Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Christian Brabandt <cb@256bit.org>
parents:
28379
diff
changeset
|
4 " Last Change: 2023 Aug 10 |
4027cefc2aab
Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Christian Brabandt <cb@256bit.org>
parents:
28379
diff
changeset
|
5 " Former Maintainer: Bram Moolenaar <Bram@vim.org> |
7 | 6 |
7 " Only do this when not done yet for this buffer | |
8 if exists("b:did_ftplugin") | |
9 finish | |
10 endif | |
11 | |
12 " Don't load another plugin for this buffer | |
13 let b:did_ftplugin = 1 | |
14 | |
233 | 15 " Using line continuation here. |
348 | 16 let s:cpo_save = &cpo |
7 | 17 set cpo-=C |
18 | |
19303 | 19 let b:undo_ftplugin = "setl fo< com< ofu< cms< def< inc< | if has('vms') | setl isk< | endif" |
7 | 20 |
21 " Set 'formatoptions' to break comment lines but not other lines, | |
22 " and insert the comment leader when hitting <CR> or using "o". | |
23 setlocal fo-=t fo+=croql | |
24 | |
19303 | 25 " These options have the right value as default, but the user may have |
26 " overruled that. | |
27 setlocal commentstring& define& include& | |
28 | |
502 | 29 " Set completion with CTRL-X CTRL-O to autoloaded function. |
30 if exists('&ofu') | |
31 setlocal ofu=ccomplete#Complete | |
32 endif | |
33 | |
7 | 34 " Set 'comments' to format dashed lists in comments. |
28379 | 35 " Also include ///, used for Doxygen. |
36 setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:///,:// | |
7 | 37 |
38 " In VMS C keywords contain '$' characters. | |
39 if has("vms") | |
40 setlocal iskeyword+=$ | |
41 endif | |
42 | |
1621 | 43 " When the matchit plugin is loaded, this makes the % command skip parens and |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
9286
diff
changeset
|
44 " braces in comments properly. |
25836 | 45 if !exists("b:match_words") |
46 let b:match_words = '^\s*#\s*if\(\|def\|ndef\)\>:^\s*#\s*elif\>:^\s*#\s*else\>:^\s*#\s*endif\>' | |
47 let b:match_skip = 's:comment\|string\|character\|special' | |
48 let b:undo_ftplugin ..= " | unlet! b:match_skip b:match_words" | |
49 endif | |
1621 | 50 |
7 | 51 " Win32 can filter files in the browse dialog |
3682 | 52 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") |
7 | 53 if &ft == "cpp" |
54 let b:browsefilter = "C++ Source Files (*.cpp *.c++)\t*.cpp;*.c++\n" . | |
55 \ "C Header Files (*.h)\t*.h\n" . | |
56 \ "C Source Files (*.c)\t*.c\n" . | |
57 \ "All Files (*.*)\t*.*\n" | |
22 | 58 elseif &ft == "ch" |
7 | 59 let b:browsefilter = "Ch Source Files (*.ch *.chf)\t*.ch;*.chf\n" . |
60 \ "C Header Files (*.h)\t*.h\n" . | |
61 \ "C Source Files (*.c)\t*.c\n" . | |
62 \ "All Files (*.*)\t*.*\n" | |
63 else | |
64 let b:browsefilter = "C Source Files (*.c)\t*.c\n" . | |
65 \ "C Header Files (*.h)\t*.h\n" . | |
66 \ "Ch Source Files (*.ch *.chf)\t*.ch;*.chf\n" . | |
67 \ "C++ Source Files (*.cpp *.c++)\t*.cpp;*.c++\n" . | |
68 \ "All Files (*.*)\t*.*\n" | |
69 endif | |
25836 | 70 let b:undo_ftplugin ..= " | unlet! b:browsefilter" |
7 | 71 endif |
348 | 72 |
73 let &cpo = s:cpo_save | |
74 unlet s:cpo_save |