diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-05-01 13:23:39 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-05-01 13:32:51 +0200 |
commit | deccd843edc9ecda04fae09bb550a90b1ba20632 (patch) | |
tree | 448f1d653d08bff988aec3778d746c450a7cf7cb /runtime/syntax/tex.vim | |
parent | ac107f7fddc59ef286e3ef3979afe0ea5e94633a (diff) | |
download | rneovim-deccd843edc9ecda04fae09bb550a90b1ba20632.tar.gz rneovim-deccd843edc9ecda04fae09bb550a90b1ba20632.tar.bz2 rneovim-deccd843edc9ecda04fae09bb550a90b1ba20632.zip |
vim-patch:3df0173fa6d0
Updated runtime files.
https://github.com/vim/vim/commit/3df0173fa6d0418e89ef4e9c1d04a97c92eec27c
Diffstat (limited to 'runtime/syntax/tex.vim')
-rw-r--r-- | runtime/syntax/tex.vim | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/runtime/syntax/tex.vim b/runtime/syntax/tex.vim index c057b63657..ab19da329b 100644 --- a/runtime/syntax/tex.vim +++ b/runtime/syntax/tex.vim @@ -1,8 +1,8 @@ " Vim syntax file " Language: TeX " Maintainer: Charles E. Campbell <NdrchipO@ScampbellPfamily.AbizM> -" Last Change: Dec 07, 2016 -" Version: 102 +" Last Change: Jan 31, 2017 +" Version: 103 " URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_TEX " " Notes: {{{1 @@ -511,7 +511,7 @@ if !exists("g:tex_no_math") if &ambw == "double" || exists("g:tex_usedblwidth") let s:texMathDelimList= s:texMathDelimList + [ \ ['\\langle' , '〈'] , - \ ['\\rangle' , '〉'] , + \ ['\\rangle' , '〉']] else let s:texMathDelimList= s:texMathDelimList + [ \ ['\\langle' , '<'] , @@ -594,8 +594,6 @@ endif if s:tex_fast =~# 'v' if exists("g:tex_verbspell") && g:tex_verbspell syn region texZone start="\\begin{[vV]erbatim}" end="\\end{[vV]erbatim}\|%stopzone\>" contains=@Spell - " listings package: - syn region texZone start="\\begin{lstlisting}" end="\\end{lstlisting}\|%stopzone\>" contains=@Spell if b:tex_stylish syn region texZone start="\\verb\*\=\z([^\ta-zA-Z@]\)" end="\z1\|%stopzone\>" contains=@Spell else |