Closed gglanzani closed 12 years ago
Certainly off-topic, but the contents of this paper look really interesting, I'd love to read it once it's published.
Hi,
I'm not a big fan of the color but I really like the idea. LaTeX really could use some love :)
Hmm, so the Delimiter change turns parens in Vimscript that color, which I don't like. Is there any way you could avoid setting that, or just do it for LaTeX files (maybe the LaTeX syntax highlighting puts a class on top of those?).
Ok, the last push should fix that. However I had to manually add
au BufRead,BufNewFile *.tex syn region texMathZoneV start="\\(" end="\\)\|%stopzone\>" keepend contains=@texMathZoneGroup
au BufRead,BufNewFile *.tex syn region texMathZoneX start="\$" skip="\\\\\|\\\$" end="\$\|%stopzone\>" keepend contains=@texMathZoneGroup
to my .vimrc
because somehow it was not read from my tex.vim
.
Looks good, thanks!
I also added those two autocommands to the color file itself in an augroup
, so you can remove them from your .vimrc
.
Thanks, that was a bit of information missing to have even better. There are many more of this texMathZoneN
and similar which could be supported this way. I'll work my way through it and make a new pull request.
This should close issue 3.
I've finally got the time to understand how to add support for LaTeX.
Note: for how the LaTeX suite works in Vim, I had to add
that is not strictly related to LaTeX but which I hope is not a problem.
Edit: here's the screenshots.
Before
After