All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 syn region texRefZone matchgroup=texRefZone start="\\[acefmpt]label{" end="}\|%stopzone\>" contains=@texRefGroup
2 syn region texRefZone matchgroup=texRefZone start="\\[aAcCeEfFmMpPtT][rvx]\=ref{" end="}\|%stopzone\>" contains=@texRefGroup
4 syn region texMyForeign matchgroup=texTypeStyle start="\\foreign{" end="}" contains=texMatcher,@NoSpell
5 syn cluster texFoldGroup add=texMyForeign
6 syn cluster texMatchGroup add=texMyForeign
8 syn region texMyTTerm matchgroup=texTypeStyle start="\\tterm{" end="}" contains=texMatcher,@NoSpell
9 syn cluster texFoldGroup add=texMyTTerm
10 syn cluster texMatchGroup add=texMyTTerm
12 syn region texTodoCmd matchgroup=texTodoCmd start="\\todo{" end="}\|%stopzone\>" contains=@texMatchGroup,@NoSpell,texMatcher
13 syn cluster texFoldGroup add=texTodoCmd
14 syn cluster texMatchGroup add=texTodoCmd
15 hi def link texTodoCmd texTodo
17 syn match texCiteNeeded '\\citeneeded\ze:\=\>'
18 syn cluster texFoldGroup add=texCiteNeeded
19 syn cluster texMatchGroup add=texCiteNeeded
20 hi def link texCiteNeeded texTodo
22 syn region texHighlit matchgroup=texHighlit start="\\highlit{" end="}\|%stopzone\>" contains=@texMatchGroup
23 syn cluster texFoldGroup add=texHighlit
24 syn cluster texMatchGroup add=texHighlit
25 hi def link texHighlit Highlit
27 syn region texDLMsg matchgroup=texDLMsg start="\\d[lp]msg{" end="}\|%stopzone\>" contains=@NoSpell
28 syn cluster texFoldGroup add=texDLMsg
29 syn cluster texMatchGroup add=texDLMsg
31 syn match texMySection '^\\section{.*'
32 syn match texMySubSection '^\\subsection{.*'
33 syn match texMySubSubSection '^\\subsubsection{.*'
34 syn match texMyParagraph '^\\paragraph{.*'
35 hi texMySection ctermbg=gray ctermfg=white cterm=bold term=reverse
36 hi texMySubSection ctermbg=cyan ctermfg=black cterm=none term=reverse
37 hi texMySubSubSection ctermbg=none ctermfg=blue cterm=bold term=reverse
38 hi texMyParagraph ctermbg=none ctermfg=black cterm=bold term=reverse