Hello everyone, Here is the extract from `doxygen.vim` highlighting supplied with Vim:
syn match doxygenParamName contained +[A-Za-z0-9_:]\++ nextgroup=doxygenSpecialMultilineDesc skipwhite syn keyword doxygenRetval contained retval throw exception nextgroup=doxygenParamName skipwhite >From my point of view, `nextgroup=doxygenParamName` is wrong way to approach this. For example, `doxygenParamName` obviously doesn't include the minus sign, so on negative values like `-1` the highlighting breaks. I think there should either be some specific group to go after the `retval` tag or `doxygenParamName` has to be modified. Am I the first to notice this issue? -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
