diff options
author | Hidehito Yabuuchi <hdht.ybuc@gmail.com> | 2017-11-10 09:38:08 +0900 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-11-10 01:38:08 +0100 |
commit | d0b05e3c362205920a2fe9dc1b3a6c556b3f00d4 (patch) | |
tree | 8f018284586291edc1bf31b7812397c19974718b | |
parent | 9baa7ca37ff75921820fe5539f962a4e51f632ce (diff) | |
download | rneovim-d0b05e3c362205920a2fe9dc1b3a6c556b3f00d4.tar.gz rneovim-d0b05e3c362205920a2fe9dc1b3a6c556b3f00d4.tar.bz2 rneovim-d0b05e3c362205920a2fe9dc1b3a6c556b3f00d4.zip |
runtime: Fix syntax error in `runtime/syntax/tex.vim` (#7518)
-rw-r--r-- | runtime/syntax/tex.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/syntax/tex.vim b/runtime/syntax/tex.vim index 6b9e1a8949..d5a5de65c8 100644 --- a/runtime/syntax/tex.vim +++ b/runtime/syntax/tex.vim @@ -512,7 +512,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' , '<'] , |