diff options
Diffstat (limited to 'after/syntax')
-rw-r--r-- | after/syntax/html.vim | 13 | ||||
-rw-r--r-- | after/syntax/tex.vim | 13 |
2 files changed, 13 insertions, 13 deletions
diff --git a/after/syntax/html.vim b/after/syntax/html.vim index 0ba2c14d..43c0c41e 100644 --- a/after/syntax/html.vim +++ b/after/syntax/html.vim @@ -22,6 +22,19 @@ if exists('s:current_syntax_save') endif endif +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'glsl') == -1 + +" Language: OpenGL Shading Language +" Maintainer: Sergey Tikhomirov <sergey@tikhomirov.io> + +syn include @GLSL syntax/glsl.vim +syn region ShaderScript + \ start="<script [^>]*type=\('\|\"\)x-shader/x-\(vertex\|fragment\)\('\|\"\)[^>]*>" + \ keepend + \ end="</script>"me=s-1 + \ contains=@GLSL,htmlScriptTag,@htmlPreproc + +endif if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'html5') == -1 " Vim syntax file diff --git a/after/syntax/tex.vim b/after/syntax/tex.vim deleted file mode 100644 index f066fbe8..00000000 --- a/after/syntax/tex.vim +++ /dev/null @@ -1,13 +0,0 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'latex') == -1 - -" 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 - -" adds support for listings package -syn region texZone start="\\begin{lstlisting}" end="\\end{lstlisting}\|%stopzone\>" -syn match texInputFile "\\lstinputlisting\s*\(\[.*\]\)\={.\{-}}" contains=texStatement,texInputCurlies,texInputFileOpt -syn match texZone "\\lstinline\s*\(\[.*\]\)\={.\{-}}" - -endif |