-- -- 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/d/optout.
>From 0707ccf1680dea703e9234eb56eaf9b3e3146d41 Mon Sep 17 00:00:00 2001 From: Maxim Zhukov <[email protected]> Date: Mon, 19 Dec 2016 15:44:40 +0300 Subject: [PATCH 2/2] syntax: doxygen: remove whitespaces This patch removing whitespaces from code. --- runtime/syntax/doxygen.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtime/syntax/doxygen.vim b/runtime/syntax/doxygen.vim index e5b4f76..45c55b5 100644 --- a/runtime/syntax/doxygen.vim +++ b/runtime/syntax/doxygen.vim @@ -198,14 +198,14 @@ endif syn region doxygenVerbatimRegion contained matchgroup=doxygenOther start=+\<verbatim\>+ matchgroup=doxygenOther end=+[\\@]\@<=\<endverbatim\>+ contains=doxygenVerbatimRegionSpecial,doxygenContinueComment,doxygenErrorComment,@NoSpell syn match doxygenVerbatimRegionSpecial contained +[\\@]\(endverbatim\>\)\@=+ - if exists('b:current_syntax') + if exists('b:current_syntax') let b:doxygen_syntax_save=b:current_syntax unlet b:current_syntax endif syn include @Dotx syntax/dot.vim - if exists('b:doxygen_syntax_save') + if exists('b:doxygen_syntax_save') let b:current_syntax=b:doxygen_syntax_save unlet b:doxygen_syntax_save else @@ -342,7 +342,7 @@ endif syn cluster rcGroup add=doxygen.* let s:my_syncolor=0 - if !exists(':SynColor') + if !exists(':SynColor') command -nargs=+ SynColor hi def <args> let s:my_syncolor=1 endif -- 2.1.4
>From ec0d16c0bf03a694f3eda7d42e7044b45ad7c6d1 Mon Sep 17 00:00:00 2001 From: Maxim Zhukov <[email protected]> Date: Mon, 19 Dec 2016 15:43:42 +0300 Subject: [PATCH 1/2] syntax: doxygen: add support negative number for retval This patch added support negative number. In the past when you enter negative numbers are not highlighted message. --- runtime/syntax/doxygen.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/syntax/doxygen.vim b/runtime/syntax/doxygen.vim index cadbf54..e5b4f76 100644 --- a/runtime/syntax/doxygen.vim +++ b/runtime/syntax/doxygen.vim @@ -180,7 +180,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 tparam nextgroup=doxygenParamName,doxygenParamDirection skipwhite - syn match doxygenParamName contained +[A-Za-z0-9_:]\++ nextgroup=doxygenSpecialMultilineDesc skipwhite + syn match doxygenParamName contained +-\?[A-Za-z0-9_:]\++ nextgroup=doxygenSpecialMultilineDesc skipwhite syn keyword doxygenRetval contained retval throw exception nextgroup=doxygenParamName skipwhite " Match one line identifiers. -- 2.1.4
