ycm (Vim Github Repository) wrote:
To be clear this is not specific to |\texttt|, it seems to apply to
|\textbf|, etc. that fall under |texTypeStyle|.
—
Reply to this email directly, view it on GitHub
<https://github.com/vim/vim/issues/16228#issuecomment-2544112661>.
You are receiving this because you are subscribed to this
thread.Message ID: <vim/vim/issues/16228/2544112...@github.com>
--
--
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
---
You received this message because you are subscribed to the Google
Groups "vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send
an email to vim_dev+unsubscr...@googlegroups.com
<mailto:vim_dev+unsubscr...@googlegroups.com>.
To view this discussion visit
https://groups.google.com/d/msgid/vim_dev/vim/vim/issues/16228/2544112661%40github.com
<https://groups.google.com/d/msgid/vim_dev/vim/vim/issues/16228/2544112661%40github.com?utm_medium=email&utm_source=footer>.
Please try the attached patch to syntax/tex.vim
Chip Campbell
--
--
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
---
You received this message because you are subscribed to the Google Groups "vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to vim_dev+unsubscr...@googlegroups.com.
To view this discussion visit
https://groups.google.com/d/msgid/vim_dev/1506a6d1-f49b-32db-caa6-c629376dc6c2%40gmail.com.
*** oldtex.vim 2024-12-15 22:10:07.212995180 -0500
--- tex.vim 2024-12-15 22:10:37.582616651 -0500
***************
*** 247,255 ****
endif
if s:tex_matchcheck =~ '('
if !s:tex_nospell
! syn region texParen start="(" end=")"
transparent
contains=@texMatchGroup,@Spell
else
! syn region texParen start="(" end=")"
transparent contains=@texMatchGroup
endif
endif
endif
--- 247,255 ----
endif
if s:tex_matchcheck =~ '('
if !s:tex_nospell
! syn region texParen start="(" end=")"
contains=@texMatchGroup,@texStyleGroup,@Spell
else
! syn region texParen start="(" end=")"
contains=@texMatchGroup,@texStyleGroup
endif
endif
endif