Mercurial > vim
comparison runtime/syntax/doxygen.vim @ 5277:42bf9264e64e
Update runtime files.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Sat, 03 Aug 2013 18:35:36 +0200 |
parents | 7bc41231fbc7 |
children | 65d7fd8381a3 |
comparison
equal
deleted
inserted
replaced
5276:be570e7912d6 | 5277:42bf9264e64e |
---|---|
1 " DoxyGen syntax hilighting extension for c/c++/idl/java | 1 " DoxyGen syntax hilighting extension for c/c++/idl/java |
2 " Language: doxygen on top of c, cpp, idl, java, php | 2 " Language: doxygen on top of c, cpp, idl, java, php |
3 " Maintainer: Michael Geddes <vimmer@frog.wheelycreek.net> | 3 " Maintainer: Michael Geddes <vimmer@frog.wheelycreek.net> |
4 " Author: Michael Geddes | 4 " Author: Michael Geddes |
5 " Last Change: Jan 2009 | 5 " Last Change: Jan 2009 (\tparam by Domnique Pelle, Aug 2013) |
6 " Version: 1.23 | 6 " Version: 1.23 |
7 " | 7 " |
8 " Copyright 2004-2008 Michael Geddes | 8 " Copyright 2004-2008 Michael Geddes |
9 " Please feel free to use, modify & distribute all or part of this script, | 9 " Please feel free to use, modify & distribute all or part of this script, |
10 " providing this copyright message remains. | 10 " providing this copyright message remains. |
177 | 177 |
178 syn match doxygenErrorSpecial contained +\s+ | 178 syn match doxygenErrorSpecial contained +\s+ |
179 | 179 |
180 " Match parameters and retvals (highlighting the first word as special). | 180 " Match parameters and retvals (highlighting the first word as special). |
181 syn match doxygenParamDirection contained "\v\[(\s*in>((]\s*\[|\s*,\s*)out>)=|out>((]\s*\[|\s*,\s*)in>)=)\]" nextgroup=doxygenParamName skipwhite | 181 syn match doxygenParamDirection contained "\v\[(\s*in>((]\s*\[|\s*,\s*)out>)=|out>((]\s*\[|\s*,\s*)in>)=)\]" nextgroup=doxygenParamName skipwhite |
182 syn keyword doxygenParam contained param nextgroup=doxygenParamName,doxygenParamDirection skipwhite | 182 syn keyword doxygenParam contained param tparam nextgroup=doxygenParamName,doxygenParamDirection skipwhite |
183 syn match doxygenParamName contained +[A-Za-z0-9_:]\++ nextgroup=doxygenSpecialMultilineDesc skipwhite | 183 syn match doxygenParamName contained +[A-Za-z0-9_:]\++ nextgroup=doxygenSpecialMultilineDesc skipwhite |
184 syn keyword doxygenRetval contained retval throw exception nextgroup=doxygenParamName skipwhite | 184 syn keyword doxygenRetval contained retval throw exception nextgroup=doxygenParamName skipwhite |
185 | 185 |
186 " Match one line identifiers. | 186 " Match one line identifiers. |
187 syn keyword doxygenOther contained addindex anchor | 187 syn keyword doxygenOther contained addindex anchor |