Mercurial > ec-dotfiles
annotate vendor/vim-syntax/slim.vim @ 675:68fbd1336559
[license] License year is a thing
| author | nanaya <me@nanaya.pro> |
|---|---|
| date | Tue, 05 Apr 2022 14:00:26 +0900 |
| parents | 673c14e2a45e |
| children | 78469331407e |
| rev | line source |
|---|---|
| 475 | 1 " Vim syntax file |
| 2 " Language: Slim | |
| 3 " Maintainer: Andrew Stone <andy@stonean.com> | |
| 4 " Version: 1 | |
| 5 " Last Change: 2010 Sep 25 | |
| 6 " TODO: Feedback is welcomed. | |
| 7 | |
| 8 " Quit when a syntax file is already loaded. | |
| 9 if exists("b:current_syntax") | |
| 10 finish | |
| 11 endif | |
| 12 | |
| 13 if !exists("main_syntax") | |
| 14 let main_syntax = 'slim' | |
| 15 endif | |
| 16 | |
| 17 " Allows a per line syntax evaluation. | |
| 18 let b:ruby_no_expensive = 1 | |
| 19 | |
| 20 " Include Ruby syntax highlighting | |
| 21 syn include @slimRubyTop syntax/ruby.vim | |
| 22 unlet! b:current_syntax | |
| 23 " Include Haml syntax highlighting | |
| 24 syn include @slimHaml syntax/haml.vim | |
| 25 unlet! b:current_syntax | |
| 26 | |
| 27 syn match slimBegin "^\s*\(&[^= ]\)\@!" nextgroup=slimTag,slimClassChar,slimIdChar,slimRuby | |
| 28 | |
| 29 syn region rubyCurlyBlock start="{" end="}" contains=@slimRubyTop contained | |
| 30 syn cluster slimRubyTop add=rubyCurlyBlock | |
| 31 | |
| 32 syn cluster slimComponent contains=slimClassChar,slimIdChar,slimWrappedAttrs,slimRuby,slimAttr,slimInlineTagChar | |
| 33 | |
| 34 syn keyword slimDocType contained html 5 1.1 strict frameset mobile basic transitional | |
| 35 syn match slimDocTypeKeyword "^\s*\(doctype\)\s\+" nextgroup=slimDocType | |
| 36 | |
| 37 syn keyword slimTodo FIXME TODO NOTE OPTIMIZE XXX contained | |
|
508
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
475
diff
changeset
|
38 syn keyword htmlTagName contained script |
| 475 | 39 |
|
508
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
475
diff
changeset
|
40 syn match slimTag "\w\+[><]*" contained contains=htmlTagName nextgroup=@slimComponent |
| 475 | 41 syn match slimIdChar "#{\@!" contained nextgroup=slimId |
| 42 syn match slimId "\%(\w\|-\)\+" contained nextgroup=@slimComponent | |
| 43 syn match slimClassChar "\." contained nextgroup=slimClass | |
| 646 | 44 syn match slimClass "\%(\w\|-\|\/\|:\(\w\|-\)\+\)\+" contained nextgroup=@slimComponent |
| 45 | |
| 475 | 46 syn match slimInlineTagChar "\s*:\s*" contained nextgroup=slimTag,slimClassChar,slimIdChar |
| 47 | |
| 48 syn region slimWrappedAttrs matchgroup=slimWrappedAttrsDelimiter start="\s*{\s*" skip="}\s*\"" end="\s*}\s*" contained contains=slimAttr nextgroup=slimRuby | |
| 49 syn region slimWrappedAttrs matchgroup=slimWrappedAttrsDelimiter start="\s*\[\s*" end="\s*\]\s*" contained contains=slimAttr nextgroup=slimRuby | |
| 50 syn region slimWrappedAttrs matchgroup=slimWrappedAttrsDelimiter start="\s*(\s*" end="\s*)\s*" contained contains=slimAttr nextgroup=slimRuby | |
| 51 | |
| 537 | 52 syn match slimAttr /\s*\%(\w\|-\)\+\s*=/me=e-1 contained contains=htmlArg nextgroup=slimAttrAssignment |
| 475 | 53 syn match slimAttrAssignment "\s*=\s*" contained nextgroup=slimWrappedAttrValue,slimAttrString |
| 54 | |
| 537 | 55 syn region slimWrappedAttrValue start="[^"']" end="\s\|$" contained contains=slimAttrString,@slimRubyTop nextgroup=slimAttr,slimRuby,slimInlineTagChar |
| 475 | 56 syn region slimWrappedAttrValue matchgroup=slimWrappedAttrValueDelimiter start="{" end="}" contained contains=slimAttrString,@slimRubyTop nextgroup=slimAttr,slimRuby,slimInlineTagChar |
| 57 syn region slimWrappedAttrValue matchgroup=slimWrappedAttrValueDelimiter start="\[" end="\]" contained contains=slimAttrString,@slimRubyTop nextgroup=slimAttr,slimRuby,slimInlineTagChar | |
| 58 syn region slimWrappedAttrValue matchgroup=slimWrappedAttrValueDelimiter start="(" end=")" contained contains=slimAttrString,@slimRubyTop nextgroup=slimAttr,slimRuby,slimInlineTagChar | |
| 59 | |
| 60 syn region slimAttrString start=+\s*"+ skip=+\%(\\\\\)*\\"+ end=+"\s*+ contained contains=slimInterpolation,slimInterpolationEscape nextgroup=slimAttr,slimRuby,slimInlineTagChar | |
| 61 syn region slimAttrString start=+\s*'+ skip=+\%(\\\\\)*\\"+ end=+'\s*+ contained contains=slimInterpolation,slimInterpolationEscape nextgroup=slimAttr,slimRuby,slimInlineTagChar | |
| 62 | |
| 63 syn region slimInnerAttrString start=+\s*"+ skip=+\%(\\\\\)*\\"+ end=+"\s*+ contained contains=slimInterpolation,slimInterpolationEscape nextgroup=slimAttr | |
| 64 syn region slimInnerAttrString start=+\s*'+ skip=+\%(\\\\\)*\\"+ end=+'\s*+ contained contains=slimInterpolation,slimInterpolationEscape nextgroup=slimAttr | |
| 65 | |
| 66 syn region slimInterpolation matchgroup=slimInterpolationDelimiter start="#{" end="}" contains=@hamlRubyTop containedin=javascriptStringS,javascriptStringD,slimWrappedAttrs | |
|
508
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
475
diff
changeset
|
67 syn region slimInterpolation matchgroup=slimInterpolationDelimiter start="#{{" end="}}" contains=@hamlRubyTop containedin=javascriptStringS,javascriptStringD,slimWrappedAttrs |
| 475 | 68 syn match slimInterpolationEscape "\\\@<!\%(\\\\\)*\\\%(\\\ze#{\|#\ze{\)" |
| 69 | |
| 589 | 70 syn region slimPlainFilter matchgroup=slimFilter start="^\z(\s*\)\%(rdoc\|textile\|markdown\|wiki\):\s*$" end="^\%(\z1 \| *$\)\@!" |
| 71 syn region slimJavascriptFilter matchgroup=slimFilter start="^\z(\s*\)javascript:\s*$" end="^\%(\z1 \| *$\)\@!" contains=@htmlJavaScript,slimInterpolation keepend | |
| 72 syn region slimCoffeeFilter matchgroup=slimFilter start="^\z(\s*\)coffee:\s*$" end="^\%(\z1 \| *$\)\@!" contains=@coffeeAll,slimInterpolation keepend | |
| 73 syn region slimCSSFilter matchgroup=slimFilter start="^\z(\s*\)css:\s*$" end="^\%(\z1 \| *$\)\@!" contains=@htmlCss,slimInterpolation keepend | |
| 74 syn region slimSassFilter matchgroup=slimFilter start="^\z(\s*\)sass:\s*$" end="^\%(\z1 \| *$\)\@!" contains=@hamlSassTop | |
| 642 | 75 syn region slimRubyFilter matchgroup=slimFilter start="^\z(\s*\)ruby:\s*$" end="^\%(\z1 \| *$\)\@!" contains=@slimRubyTop keepend |
| 589 | 76 |
| 537 | 77 syn region slimRuby matchgroup=slimRubyOutputChar start="\s*[=]\==[']\=" skip="\%\(,\s*\|\\\)$" end="$" contained contains=@slimRubyTop keepend |
| 78 syn region slimRuby matchgroup=slimRubyChar start="\s*-" skip="\%\(,\s*\|\\\)$" end="$" contained contains=@slimRubyTop keepend | |
| 475 | 79 |
| 80 syn match slimComment /^\(\s*\)[/].*\(\n\1\s.*\)*/ contains=slimTodo | |
| 537 | 81 syn match slimText /^\(\s*\)[`|'].*\(\n\1\s.*\)*/ contains=slimInterpolation |
| 475 | 82 |
| 83 syn match slimFilter /\s*\w\+:\s*/ contained | |
| 84 syn match slimHaml /^\(\s*\)\<haml:\>.*\(\n\1\s.*\)*/ contains=@slimHaml,slimFilter | |
| 85 | |
| 86 syn match slimIEConditional "\%(^\s*/\)\@<=\[\s*if\>[^]]*]" contained containedin=slimComment | |
| 87 | |
| 88 hi def link slimAttrString String | |
| 89 hi def link slimBegin String | |
| 90 hi def link slimClass Type | |
|
508
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
475
diff
changeset
|
91 hi def link slimAttr Type |
| 475 | 92 hi def link slimClassChar Type |
| 93 hi def link slimComment Comment | |
| 94 hi def link slimDocType Identifier | |
| 95 hi def link slimDocTypeKeyword Keyword | |
| 96 hi def link slimFilter Keyword | |
| 97 hi def link slimIEConditional SpecialComment | |
| 98 hi def link slimId Identifier | |
| 99 hi def link slimIdChar Identifier | |
| 100 hi def link slimInnerAttrString String | |
| 101 hi def link slimInterpolationDelimiter Delimiter | |
| 102 hi def link slimRubyChar Special | |
| 103 hi def link slimRubyOutputChar Special | |
| 104 hi def link slimText String | |
| 105 hi def link slimTodo Todo | |
| 106 hi def link slimWrappedAttrValueDelimiter Delimiter | |
| 107 hi def link slimWrappedAttrsDelimiter Delimiter | |
| 108 hi def link slimInlineTagChar Delimiter | |
| 589 | 109 hi def link slimFilter PreProc |
| 475 | 110 |
| 111 let b:current_syntax = "slim" |
