From d6fafcf4c22c6b8be99000462a82b6fd26b6487b Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Thu, 8 Sep 2016 10:46:53 +0100 Subject: [PATCH] Simplify C/C++ {} matching --- after/syntax/c.vim | 2 -- 1 file changed, 2 deletions(-) diff --git a/after/syntax/c.vim b/after/syntax/c.vim index 2e1be1c..f88aff4 100644 --- a/after/syntax/c.vim +++ b/after/syntax/c.vim @@ -32,8 +32,6 @@ if exists('g:c_doxygen') && g:c_doxygen endif " Match curly braces with cDelimiter highlight group -syn match cCurlyError "}" -syn region cBlock matchgroup=cDelimiter start="{" end="}" contains=ALLBUT,cBadBlock,cCurlyError,@cParenGroup,cErrInParen,cCppParen,cErrInBracket,cCppBracket,@cStringGroup,@Spell fold syn region cBlock matchgroup=cDelimiter start="{" end="}" transparent fold