diff options
author | James McCoy <jamessan@jamessan.com> | 2016-07-07 23:02:08 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-07-08 01:45:20 -0400 |
commit | 3f689ed327be0a391f8cdd15302583c02b04b4e2 (patch) | |
tree | 6cfbb27a6c357e395c01c97257c9158592e5219b /runtime/syntax/tex.vim | |
parent | 31734c6ab0d743dad1c4f6fd9a86479ec2790a61 (diff) | |
download | rneovim-3f689ed327be0a391f8cdd15302583c02b04b4e2.tar.gz rneovim-3f689ed327be0a391f8cdd15302583c02b04b4e2.tar.bz2 rneovim-3f689ed327be0a391f8cdd15302583c02b04b4e2.zip |
vim-patch:7db8f6f
Updated runtime files.
https://github.com/vim/vim/commit/7db8f6f4f85e5d0526d23107b2a5e2334dc23354
Ignore changes to
* doc/tags: Generated at build time
* doc/channel.txt, doc/todo.txt: Irrelevant to Neovim
* pack/dist/opt/matchit/doc/matchit.txt: matchit is enabled by default,
so description of how to enable isn't needed.
Diffstat (limited to 'runtime/syntax/tex.vim')
-rw-r--r-- | runtime/syntax/tex.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/syntax/tex.vim b/runtime/syntax/tex.vim index cef28d65ed..5af5882a56 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: Feb 18, 2016 -" Version: 92 +" Last Change: Mar 07, 2016 +" Version: 93 " URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_TEX " " Notes: {{{1 @@ -296,7 +296,7 @@ syn match texTypeStyle "\\sc\>" syn match texTypeStyle "\\tt\>" " Type Styles: attributes, commands, families, etc (LaTeX2E): {{{1 -if s:tex_conceal !~ 'b' +if s:tex_conceal !~# 'b' syn match texTypeStyle "\\textbf\>" syn match texTypeStyle "\\textit\>" endif @@ -541,7 +541,7 @@ if !exists("g:tex_no_math") syn match texOnlyMath "[_^]" endif syn match texSpecialChar "\^\^[0-9a-f]\{2}\|\^\^\S" -if s:tex_conceal !~ 'S' +if s:tex_conceal !~# 'S' syn match texSpecialChar '\\glq\>' contained conceal cchar=‚ syn match texSpecialChar '\\grq\>' contained conceal cchar=‘ syn match texSpecialChar '\\glqq\>' contained conceal cchar=„ |