diff options
Diffstat (limited to 'after')
-rw-r--r-- | after/syntax/c.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/after/syntax/c.vim b/after/syntax/c.vim index 72136f6..301cd90 100644 --- a/after/syntax/c.vim +++ b/after/syntax/c.vim | |||
@@ -21,6 +21,10 @@ syntax match Comment "//.*" contains=Todo | |||
21 | syn clear cBlock | 21 | syn clear cBlock |
22 | syn region cBlock start=/{/ end=/}/ transparent | 22 | syn region cBlock start=/{/ end=/}/ transparent |
23 | 23 | ||
24 | |||
25 | " configure c.vim so that it automatically allows doxygen like comments | ||
26 | let g:load_doxygen_syntax=1 | ||
27 | |||
24 | " multiple single line comments in a row " broken! | 28 | " multiple single line comments in a row " broken! |
25 | " syn region myCComment start="/\*" end="\*/" fold keepend transparent | 29 | " syn region myCComment start="/\*" end="\*/" fold keepend transparent |
26 | 30 | ||