comparison runtime/syntax/doxygen.vim @ 29269:0fdf36de4018

Update runtime files Commit: https://github.com/vim/vim/commit/8cc5b559f70041361612b8a6a87922503b33baa6 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 23 13:04:20 2022 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Thu, 23 Jun 2022 14:15:04 +0200
parents 11b656e74444
children dc4de65a7fb7
comparison
equal deleted inserted replaced
29268:4b53fd331519 29269:0fdf36de4018
496 496
497 call s:Doxygen_Hilights() 497 call s:Doxygen_Hilights()
498 498
499 syn match doxygenLeadingWhite +\(^\s*\*\)\@<=\s*+ contained 499 syn match doxygenLeadingWhite +\(^\s*\*\)\@<=\s*+ contained
500 500
501 " This is still a proposal, but won't do any harm. 501 " This is still a proposal, but it is probably fine. However, it doesn't
502 aug doxygengroup 502 " work when 'syntax' is set in a modeline, catch the security error.
503 au! 503 try
504 au Syntax UserColor_reset nested call s:Doxygen_Hilights_Base() 504 aug doxygengroup
505 au Syntax UserColor_{on,reset,enable} nested call s:Doxygen_Hilights() 505 au!
506 aug END 506 au Syntax UserColor_reset nested call s:Doxygen_Hilights_Base()
507 au Syntax UserColor_{on,reset,enable} nested call s:Doxygen_Hilights()
508 aug END
509 catch /E12:/
510 endtry
507 511
508 512
509 SynLink doxygenBody Comment 513 SynLink doxygenBody Comment
510 SynLink doxygenLine doxygenBody 514 SynLink doxygenLine doxygenBody
511 SynLink doxygenTODO Todo 515 SynLink doxygenTODO Todo