diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2013-10-17 15:54:18 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2013-10-17 15:54:18 +0200 |
commit | 57cfac7ae384466c3ff2543a9200319dc1d459a0 (patch) | |
tree | d9c89bda58e53cf4c23442df3cd15309ee621aa6 /after/syntax | |
parent | 085aad28a49395507b4ef1939b2fd75d6db781bf (diff) | |
download | vim-polyglot-57cfac7ae384466c3ff2543a9200319dc1d459a0.tar.gz vim-polyglot-57cfac7ae384466c3ff2543a9200319dc1d459a0.zip |
Update latex, csv, handlebars and rust
Diffstat (limited to 'after/syntax')
-rw-r--r-- | after/syntax/tex.vim | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/after/syntax/tex.vim b/after/syntax/tex.vim index 32af7253..b11207dc 100644 --- a/after/syntax/tex.vim +++ b/after/syntax/tex.vim @@ -1,2 +1,4 @@ -" adds support for cleverref package (`\cref` and `\Cref`) -syn region texRefZone matchgroup=texStatement start="\\\(c\|C\)ref{" end="}\|%stopzone\>" contains=@texRefGroup +" adds support for cleverref package +" \Cref, \cref, \cpageref, \labelcref, \labelcpageref +syn region texRefZone matchgroup=texStatement start="\\Cref{" end="}\|%stopzone\>" contains=@texRefGroup +syn region texRefZone matchgroup=texStatement start="\\\(label\|\)c\(page\|\)ref{" end="}\|%stopzone\>" contains=@texRefGroup |