summaryrefslogtreecommitdiffstats
path: root/runtime/syntax
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-08-13 14:38:12 +0200
committerBram Moolenaar <Bram@vim.org>2010-08-13 14:38:12 +0200
commit6b6eedfc1c827be45dbcf64346d28dd96d425c06 (patch)
tree6fcc74ead26c5af9006c355a246726c549455f05 /runtime/syntax
parent580061a821eb2e08439233cbeabada67c480493b (diff)
Runtime file updates.
Diffstat (limited to 'runtime/syntax')
-rw-r--r--runtime/syntax/tex.vim8
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/syntax/tex.vim b/runtime/syntax/tex.vim
index 97fc898caa..5e6fc7f148 100644
--- a/runtime/syntax/tex.vim
+++ b/runtime/syntax/tex.vim
@@ -1,8 +1,8 @@
" Vim syntax file
" Language: TeX
" Maintainer: Dr. Charles E. Campbell, Jr. <NdrchipO@ScampbellPfamily.AbizM>
-" Last Change: Aug 09, 2010
-" Version: 56
+" Last Change: Aug 12, 2010
+" Version: 57
" URL: http://mysite.verizon.net/astronaut/vim/index.html#vimlinks_syntax
"
" Notes: {{{1
@@ -814,8 +814,8 @@ if has("conceal") && &enc == 'utf-8'
" Superscripts/Subscripts {{{2
if s:tex_conceal =~ 's'
- syn region texSuperscript matchgroup=Delimiter start='\^{' end='}' contained concealends contains=texSuperscripts,texStatement
- syn region texSubscript matchgroup=Delimiter start='_{' end='}' contained concealends contains=texSubscripts,texStatement
+ syn region texSuperscript matchgroup=Delimiter start='\^{' end='}' contained concealends contains=texSuperscripts,texStatement,texSubscript,texSuperscript,texMathMatcher
+ syn region texSubscript matchgroup=Delimiter start='_{' end='}' contained concealends contains=texSubscripts,texStatement,texSubscript,texSuperscript,texMathMatcher
fun! s:SuperSub(group,leader,pat,cchar)
exe 'syn match '.a:group." '".a:leader.a:pat."' contained conceal cchar=".a:cchar
exe 'syn match '.a:group."s '".a:pat."' contained conceal cchar=".a:cchar.' nextgroup='.a:group.'s'