| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| if !exists('main_syntax') |
| if exists('b:current_syntax') |
| finish |
| endif |
| let main_syntax = 'astro' |
| elseif exists('b:current_syntax') && b:current_syntax == 'astro' |
| finish |
| endif |
|
|
| |
| let g:astro_typescript = get(g:, 'astro_typescript', 'disable') |
| let g:astro_stylus = get(g:, 'astro_stylus', 'disable') |
|
|
| let s:cpoptions_save = &cpoptions |
| set cpoptions&vim |
|
|
| |
| runtime! syntax/html.vim |
|
|
| |
| syntax match htmlTagName contained "\<[a-zA-Z\.]*\>" |
|
|
| |
| syntax match astroDirectives contained '\<[a-z]\+:[a-z|]*\>' containedin=htmlTag |
|
|
| unlet b:current_syntax |
|
|
| if g:astro_typescript == 'enable' |
| |
| syntax include @astroJavaScript syntax/typescript.vim |
|
|
| |
| syntax clear javaScriptExpression |
| syntax region javaScriptExpression |
| \ contained start=+&{+ |
| \ keepend end=+};+ |
| \ contains=@astroJavaScript,@htmlPreproc |
|
|
| |
| syntax clear javaScript |
| syntax region javaScript |
| \ start=+<script\_[^>]*>+ |
| \ keepend |
| \ end=+</script\_[^>]*>+me=s-1 |
| \ contains=htmlScriptTag,@astroJavaScript,@htmlPreproc,htmlCssStyleComment |
| else |
| |
| syntax include @astroJavaScript syntax/javascript.vim |
| endif |
|
|
| |
| syntax match astroFence contained +^---$+ |
|
|
| |
| syntax region astroJavaScript |
| \ start=+^---$+ |
| \ keepend |
| \ end=+^---$+ |
| \ contains=htmlTag,@astroJavaScript,@htmlPreproc,htmlCssStyleComment,htmlEndTag,astroFence |
| \ fold |
|
|
| unlet b:current_syntax |
|
|
| if g:astro_typescript == 'enable' |
| |
| syntax include @astroJavaScriptReact syntax/typescriptreact.vim |
| else |
| |
| syntax include @astroJavaScriptReact syntax/javascriptreact.vim |
| endif |
|
|
| |
| execute 'syntax region astroJavaScriptExpression start=+{+ keepend end=+}+ ' . |
| \ 'contains=@astroJavaScriptReact, @htmlPreproc containedin=' . join([ |
| \ 'htmlArg', 'htmlBold', 'htmlBoldItalic', 'htmlBoldItalicUnderline', |
| \ 'htmlBoldUnderline', 'htmlBoldUnderlineItalic', 'htmlH1', 'htmlH2', |
| \ 'htmlH3', 'htmlH4', 'htmlH5', 'htmlH6', 'htmlHead', 'htmlItalic', |
| \ 'htmlItalicBold', 'htmlItalicBoldUnderline', 'htmlItalicUnderline', |
| \ 'htmlItalicUnderlineBold', 'htmlLeadingSpace', 'htmlLink', |
| \ 'htmlStrike', 'htmlString', 'htmlTag', 'htmlTitle', 'htmlUnderline', |
| \ 'htmlUnderlineBold', 'htmlUnderlineBoldItalic', |
| \ 'htmlUnderlineItalic', 'htmlUnderlineItalicBold', 'htmlValue' |
| \ ], ',') |
|
|
| |
| syntax region cssStyle |
| \ start=+<style\_[^>]*>+ |
| \ keepend |
| \ end=+</style\_[^>]*>+me=s-1 |
| \ contains=htmlTag,@htmlCss,htmlCssStyleComment,@htmlPreproc,htmlEndTag |
| \ containedin=@astroJavaScriptReact |
|
|
| unlet b:current_syntax |
|
|
| |
| syntax include @astroScss syntax/scss.vim |
|
|
| |
| syntax region scssStyle |
| \ start=/<style\>\_[^>]*\(lang\)=\( |
| \ keepend |
| \ end=+</style>+me=s-1 |
| \ contains=@astroScss,astroSurroundingTag |
| \ fold |
|
|
| unlet b:current_syntax |
|
|
| |
| syntax include @astroSass syntax/sass.vim |
|
|
| |
| syntax region sassStyle |
| \ start=/<style\>\_[^>]*\(lang\)=\( |
| \ keepend |
| \ end=+</style>+me=s-1 |
| \ contains=@astroSass,astroSurroundingTag |
| \ fold |
|
|
| unlet b:current_syntax |
|
|
| |
| syntax include @astroLess syntax/less.vim |
|
|
| |
| syntax region lessStyle |
| \ start=/<style\>\_[^>]*\(lang\)=\( |
| \ keepend |
| \ end=+</style>+me=s-1 |
| \ contains=@astroLess,astroSurroundingTag |
| \ fold |
|
|
| unlet b:current_syntax |
|
|
| |
| |
| |
| if g:astro_stylus == 'enable' |
| try |
| |
| syntax include @astroStylus syntax/stylus.vim |
|
|
| |
| syntax region stylusStyle |
| \ start=/<style\>\_[^>]*\(lang\)=\( |
| \ keepend |
| \ end=+</style>+me=s-1 |
| \ contains=@astroStylus,astroSurroundingTag |
| \ fold |
|
|
| unlet b:current_syntax |
| catch |
| echomsg "you need install a external plugin for support stylus in .astro files" |
| endtry |
| endif |
|
|
| |
| syntax region astroSurroundingTag |
| \ start=+<\(script\|style\)+ |
| \ end=+>+ |
| \ contains=htmlTagError,htmlTagN,htmlArg,htmlValue,htmlEvent,htmlString |
| \ contained |
| \ fold |
|
|
| |
| |
| highlight default link astroDirectives Special |
| highlight default link astroFence Comment |
|
|
| let b:current_syntax = 'astro' |
| if main_syntax == 'astro' |
| unlet main_syntax |
| endif |
|
|
| |
| syntax sync fromstart |
|
|
| let &cpoptions = s:cpoptions_save |
| unlet s:cpoptions_save |
| |
|
|