diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-08-03 18:35:36 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-08-03 18:35:36 +0200 |
commit | 9d98fe9cae372d84d0b1f6b56eee4615c91b1307 (patch) | |
tree | 0f3f6df92038bc9f662e5027f5b05e51fc400bc8 /runtime/syntax/doxygen.vim | |
parent | f40f4ab8df0bb52a2d5f684d961b7c932c30e5df (diff) | |
download | vim-git-9d98fe9cae372d84d0b1f6b56eee4615c91b1307.tar.gz |
Update runtime files.
Diffstat (limited to 'runtime/syntax/doxygen.vim')
-rw-r--r-- | runtime/syntax/doxygen.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/syntax/doxygen.vim b/runtime/syntax/doxygen.vim index 1aea3bf72..cadbf54dc 100644 --- a/runtime/syntax/doxygen.vim +++ b/runtime/syntax/doxygen.vim @@ -2,7 +2,7 @@ " Language: doxygen on top of c, cpp, idl, java, php " Maintainer: Michael Geddes <vimmer@frog.wheelycreek.net> " Author: Michael Geddes -" Last Change: Jan 2009 +" Last Change: Jan 2009 (\tparam by Domnique Pelle, Aug 2013) " Version: 1.23 " " Copyright 2004-2008 Michael Geddes @@ -179,7 +179,7 @@ endif " Match parameters and retvals (highlighting the first word as special). syn match doxygenParamDirection contained "\v\[(\s*in>((]\s*\[|\s*,\s*)out>)=|out>((]\s*\[|\s*,\s*)in>)=)\]" nextgroup=doxygenParamName skipwhite - syn keyword doxygenParam contained param nextgroup=doxygenParamName,doxygenParamDirection skipwhite + syn keyword doxygenParam contained param tparam nextgroup=doxygenParamName,doxygenParamDirection skipwhite syn match doxygenParamName contained +[A-Za-z0-9_:]\++ nextgroup=doxygenSpecialMultilineDesc skipwhite syn keyword doxygenRetval contained retval throw exception nextgroup=doxygenParamName skipwhite |