diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2017-12-06 13:05:56 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2017-12-06 13:05:56 +0100 |
commit | 9fe009095afdb86f6f771109ac454ccfc5340f31 (patch) | |
tree | 1bb6b2fd7e2ff2b94bd3dd8ce6fdb735e873237b /after/syntax | |
parent | dce9e8dec5ef51730291c7bbff3e3997433eabbd (diff) | |
download | vim-polyglot-9fe009095afdb86f6f771109ac454ccfc5340f31.tar.gz vim-polyglot-9fe009095afdb86f6f771109ac454ccfc5340f31.zip |
Change julia provider to JuliaEditorSupport/julia-vim, closes #253
Diffstat (limited to 'after/syntax')
-rw-r--r-- | after/syntax/html.vim | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/after/syntax/html.vim b/after/syntax/html.vim index 43c0c41e..0ba2c14d 100644 --- a/after/syntax/html.vim +++ b/after/syntax/html.vim @@ -22,19 +22,6 @@ 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 |