From 8c48409a7e498356d6f6a3f86be266cfa64f9221 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=20Yngve=20Lerv=C3=A5g?= Date: Wed, 11 Nov 2015 20:56:01 +0100 Subject: [PATCH] Add texItalStyle to texParen cluster (fixes #274) --- after/syntax/tex.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/after/syntax/tex.vim b/after/syntax/tex.vim index 7ccd070..19b368c 100644 --- a/after/syntax/tex.vim +++ b/after/syntax/tex.vim @@ -16,6 +16,7 @@ if has('conceal') && get(g:, 'tex_conceal', 'b') =~# 'b' syntax region texItalStyle \ matchgroup=texTypeStyle start="\\emph\s*{" end="}" \ concealends contains=@texItalGroup + syntax cluster texMatchGroup add=texItalStyle endif " }}}1