Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 73 by [email protected]: Case mismatch in vim.vim syntax file
(VimSynMtchCchar should be vimSynMtchCchar, lowercase leading v)
http://code.google.com/p/vim/issues/detail?id=73
Line 432 of $VIMRUNTIME/syntax/vim.vim
syn match vimSynMtchOpt contained "\<cchar="
nextgroup=VimSynMtchCchar
To be consistent with the rest of the labels used, the leading V should be
lowercase.
In Context:
" Syntax: match {{{2
syn cluster vimSynMtchGroup
contains=vimMtchComment,vimSynContains,vimSynError,vimSynMtchOpt,vimSynNextgroup,vimSynRegPat,vimNotation
syn keyword vimSynType contained match skipwhite
nextgroup=vimSynMatchRegion
syn region vimSynMatchRegion contained keepend matchgroup=vimGroupName
start="\k\+" matchgroup=vimSep end="|\|$" contains=@vimSynMtchGroup
syn match vimSynMtchOpt contained "\<\(conceal\|transparent\|contained\|
excludenl\|skipempty\|skipwhite\|display\|extend\|skipnl\|fold\)\>"
if has("conceal")
syn match vimSynMtchOpt contained "\<cchar="
nextgroup=VimSynMtchCchar
syn match vimSynMtchCchar contained "\S"
endif
--
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